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