diff --git a/doc/manual/source/the-model-file.rst b/doc/manual/source/the-model-file.rst index 8d7eae1ac6b246768a75d561917a0b6e23a6e125..33a811a551660565ad9ec649a4823aa266e311ef 100644 --- a/doc/manual/source/the-model-file.rst +++ b/doc/manual/source/the-model-file.rst @@ -14285,7 +14285,7 @@ Macro directives @#define w = [ "US", "EA" ] // String array @#define u = [ 1, ["EA"] ] // Mixed array @#define z = 3 + v[2] // Equals 5 - @#define t = ("US" in w) // Equals 1 (true) + @#define t = ("US" in w) // Equals true @#define f(x) = " " + x + y // Function `f` with argument `x` // returns the string ' ' + x + 'US'