]> gitweb.factorcode.org Git - factor.git/commitdiff
strings: correct article commas
authorrazetime <raghuallthetime@hotmail.com>
Sat, 6 May 2023 02:26:05 +0000 (07:56 +0530)
committerJohn Benediktsson <mrjbq7@gmail.com>
Tue, 16 May 2023 16:44:04 +0000 (09:44 -0700)
core/strings/strings-docs.factor

index 992b6ea9e59ff61db4eeada3629a77dc8cee569b..2b76925ac6bfb23e3f4821ca01ab66bc13e59f2d 100644 (file)
@@ -3,7 +3,7 @@ help.vocabs ;
 IN: strings
 
 ARTICLE: "strings" "Strings"
-"The " { $vocab-link "strings" } " vocabulary implements a data type for storing text. Strings are represented as fixed-size mutable sequences of Unicode code points. Code points are represented as integers in the range [0,2,097,152]."
+"The " { $vocab-link "strings" } " vocabulary implements a data type for storing text. Strings are represented as fixed-size mutable sequences of Unicode code points. Code points are represented as integers in the range [0, 2097152]."
 $nl
 "Strings implement the " { $link "sequence-protocol" } ", and basic string manipulation can be performed with " { $link "sequences" } " from the " { $vocab-link "sequences" } " vocabulary. More text processing functionality can be found in vocabularies carrying the " { $link T{ vocab-tag { name "text" } } } " tag."
 $nl