From 69bcda80abcc8d560c25dde0a6cd896b65e7699c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filipe=20Brand=C3=A3o?= Date: Mon, 13 Jan 2025 18:15:02 +0000 Subject: [PATCH] Style guide: Link to API pages --- docs/source/ampl/best-practices/style-guide.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/source/ampl/best-practices/style-guide.md b/docs/source/ampl/best-practices/style-guide.md index 18900ae..8df070b 100644 --- a/docs/source/ampl/best-practices/style-guide.md +++ b/docs/source/ampl/best-practices/style-guide.md @@ -65,7 +65,10 @@ Help ensure that the model's requirements can indeed be met given the available ```ampl check: sum{p in PRODUCTS} demand[p] <= total_capacity; ``` -This check can also be performed on the `API` side, before loading the data. + +```{note} +This check can also be performed on the [API](#apis) side (specially when using [Python](#python_integration)), before loading the data. +``` ## 2. Naming