You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LaTeX was complaining that this codepoint did not exist in the selected font.
They turned out to indicate areas that had garbled list formatting, so fix
the lists and remove the unneeded whitespace character.
Fixes#7.
Copy file name to clipboardExpand all lines: docs/soar_manual/03_SyntaxOfSoarPrograms.md
+6-3Lines changed: 6 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -51,10 +51,13 @@ lowercase letters in a case-insensitive manner, for example, when using the
51
51
[`print` command](../reference/cli/cmd_print.md). But internally, they are actually
52
52
uppercase letters.)
53
53
54
-
-**Constants**: There are three types of constants: integers, floating-point, and symbolic constants: - Integer constants (numbers). The range of values depends on the machine
54
+
-**Constants**: There are three types of constants: integers, floating-point, and symbolic constants:
55
+
- Integer constants (numbers). The range of values depends on the machine
55
56
and implementation you’re using, but it is at least [-2 billion...+2
56
-
billion]. - Floating-point constants (numbers). The range depends on the machine and
57
-
implementation you’re using. - Symbolic constants. These are symbols with arbitrary names. A constant can use
57
+
billion].
58
+
- Floating-point constants (numbers). The range depends on the machine and
59
+
implementation you’re using.
60
+
- Symbolic constants. These are symbols with arbitrary names. A constant can use
58
61
any combination of letters, digits, or `$%&*+-/:<=>?_`. Other characters (such as blank
59
62
spaces) can be included by surrounding the complete constant name with vertical
60
63
bars: `|This is a constant|`. (The vertical bars aren’t part of the name; they’re
0 commit comments