diff --git a/doc/manual/source/the-model-file.rst b/doc/manual/source/the-model-file.rst index 3a394ecdb49967cd17e587c46e509711fc86aaa7..5aff07921f8ada8063c6dd65eb1239e03ca7b15c 100644 --- a/doc/manual/source/the-model-file.rst +++ b/doc/manual/source/the-model-file.rst @@ -10360,7 +10360,10 @@ The following operators can be used on doubles: integer array ``[1,2,3,4]``). .. versionchanged:: 4.6 - Before this change, you needed brackets around the arguments to the colon operator (e.g. ``[1:4]``) + Previously, putting brackets around the arguments to the colon + operator (e.g. ``[1:4]``) had now effect. Now, ``[1:4]`` will create + an array containing a single element, itself an array (i.e. it is + equivalent to ``[ [1, 2, 3, 4] ]``) * Functions: ``max, min, mod, exp, log, log10, sin, cos, tan, asin, acos, atan, sqrt, cbrt, sign, floor, ceil, trunc, erf, erfc, gamma, lgamma, round, normpdf, normcdf``. NB ``ln`` can be used instead of ``log``