]> gitweb.factorcode.org Git - factor.git/commitdiff
sytax-docs: mention that numbers may contain commas
authorAlexander Iljin <ajsoft@yandex.ru>
Tue, 20 Jun 2017 18:51:14 +0000 (21:51 +0300)
committerAlexander Iljin <ajsoft@yandex.ru>
Wed, 21 Jun 2017 09:36:39 +0000 (12:36 +0300)
core/syntax/syntax-docs.factor

index 448b02def1548c715dc1b4e75c228d2ec24ed68e..0122df285cbd08add475062dc3b59139c34da1d4 100644 (file)
@@ -34,11 +34,11 @@ ARTICLE: "syntax-immediate" "Parse time evaluation"
 } ;
 
 ARTICLE: "syntax-integers" "Integer syntax"
-"The printed representation of an integer consists of a sequence of digits, optionally prefixed by a sign."
+"The printed representation of an integer consists of a sequence of digits, optionally prefixed by a sign and arbitrarily separated by commas."
 { $code
     "123456"
     "-10"
-    "2432902008176640000"
+    "2,432,902,008,176,640,000"
 }
 "Integers are entered in base 10 unless prefixed with a base-changing prefix. " { $snippet "0x" } " begins a hexadecimal literal, " { $snippet "0o" } " an octal literal, and " { $snippet "0b" } " a binary literal. A sign, if any, goes before the base prefix."
 { $example