From: Kevin Day Date: Tue, 17 May 2022 23:14:43 +0000 (-0500) Subject: Cleanup: Replace the number 0 with the word zero. X-Git-Tag: 0.5.10~118 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=32a125976161e87e38541b7cdf96141b0d63149a;p=fll Cleanup: Replace the number 0 with the word zero. --- diff --git a/specifications/fss-0001.txt b/specifications/fss-0001.txt index a3871fe..74315d8 100644 --- a/specifications/fss-0001.txt +++ b/specifications/fss-0001.txt @@ -27,7 +27,7 @@ Featureless Settings Specification: 0001 - Extended: code:"\n" = Newline. code:"*" = Zero or more occurrences. code:"+" = One or more occurrences. - code:"()*" = Grouping that repeats 0 or more times. + code:"()*" = Grouping that repeats zero or more times. Before Structure\: code:"" diff --git a/specifications/fss-000a.txt b/specifications/fss-000a.txt index 78b4e81..d32f000 100644 --- a/specifications/fss-000a.txt +++ b/specifications/fss-000a.txt @@ -29,7 +29,7 @@ Featureless Settings Specification: 000A - Extended Reverse Mapping: code:"\n" = Newline. code:"*" = Zero or more occurrences. code:"+" = One or more occurrences. - code:"()*" = Grouping that repeats 0 or more times. + code:"()*" = Grouping that repeats zero or more times. Before Structure\: code:"" diff --git a/specifications/iki.txt b/specifications/iki.txt index c55a332..22d579c 100644 --- a/specifications/iki.txt +++ b/specifications/iki.txt @@ -36,8 +36,8 @@ IKI Specifications: code:"\x" = any character. code:"\W" = any non-word character, discluding code:"_", code:"-", code:"+" (and Unicode equivalents). code:"\e" = an optional escape sequence of any number of backslashes, such as code:"\\". - code:"*" = 0 or more occurrences. - code:"~" = one or more occurrences, or 0 if at start of file. + code:"*" = zero or more occurrences. + code:"~" = one or more occurrences, or zero if at start of file. Before Structure\: code:"\x*\W~\*:*"