From a0ac537a9ba4e4b3738839b21ee8cff989903297 Mon Sep 17 00:00:00 2001
From: crc
Date: Fri, 16 Apr 2021 12:58:17 +0000
Subject: [PATCH] glossary: occurrance -> occurrence (thanks kiyoshi)
FossilOrigin-Name: df4b015483fcca0b2a20cf5e20a9f24a3a86ab4b91c218c428e1a83147c4e9ac
---
doc/Glossary-Concise.txt | 4 ++--
doc/Glossary.html | 4 ++--
doc/Glossary.txt | 4 ++--
doc/words.tsv | 4 ++--
4 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/doc/Glossary-Concise.txt b/doc/Glossary-Concise.txt
index f6b611c..21dc7d8 100644
--- a/doc/Glossary-Concise.txt
+++ b/doc/Glossary-Concise.txt
@@ -1217,10 +1217,10 @@ s:skip D: - A: - F: -
Internal helper function used to skip over a string in a definition.
s:split D: sc-ss A: - F: -
-Split a string on the first occurrance of the specified character.
+Split a string on the first occurrence of the specified character.
s:split-on-string D: ss-ss A: - F: -
-Split a string on the first occurrance of the specified string. After the split, the top stack item will be the part of the string before the specified subsring, and the second item will be the rest of the original string.
+Split a string on the first occurrence of the specified string. After the split, the top stack item will be the part of the string before the specified subsring, and the second item will be the rest of the original string.
s:substr D: sfl-s A: - F: -
Extract a substring from the specified string. This will take the characters starting at `f` and extend `l` characters in length.
diff --git a/doc/Glossary.html b/doc/Glossary.html
index 3c3c30b..7060d9a 100644
--- a/doc/Glossary.html
+++ b/doc/Glossary.html
@@ -3057,14 +3057,14 @@
Addr: -
Float: -
-Split a string on the first occurrance of the specified character.
+Split a string on the first occurrence of the specified character.
Class: | class:word |
Namespace: | s |
Interface Layer: | all |
s:split-on-string
Data: ss-ss
Addr: -
Float: -
-Split a string on the first occurrance of the specified string. After the split, the top stack item will be the part of the string before the specified subsring, and the second item will be the rest of the original string.
+Split a string on the first occurrence of the specified string. After the split, the top stack item will be the part of the string before the specified subsring, and the second item will be the rest of the original string.
Class: | class:word |
Namespace: | s |
Interface Layer: | all |
Example:
'Hello_Brave_World! 'Brave s:split-on-string s:put nl s:put nl
diff --git a/doc/Glossary.txt b/doc/Glossary.txt
index 272e76a..e79fd60 100644
--- a/doc/Glossary.txt
+++ b/doc/Glossary.txt
@@ -4724,7 +4724,7 @@ s:split
Addr: -
Float: -
-Split a string on the first occurrance of the specified character.
+Split a string on the first occurrence of the specified character.
Class: class:word | Namespace: s | Interface Layer: all
------------------------------------------------------------------------
@@ -4735,7 +4735,7 @@ s:split-on-string
Addr: -
Float: -
-Split a string on the first occurrance of the specified string. After the split, the top stack item will be the part of the string before the specified subsring, and the second item will be the rest of the original string.
+Split a string on the first occurrence of the specified string. After the split, the top stack item will be the part of the string before the specified subsring, and the second item will be the rest of the original string.
Class: class:word | Namespace: s | Interface Layer: all
diff --git a/doc/words.tsv b/doc/words.tsv
index 4260772..f8f8893 100644
--- a/doc/words.tsv
+++ b/doc/words.tsv
@@ -404,8 +404,8 @@ s:replace-all sss-s - - Replace all instances of s2 in s1 with s3. class:word
s:reverse s-s - - Reverse the order of ASCII characters in a string. class:word {n/a} {n/a} s all
s:right sn-s - - Return a new string containing the specified number of characters from the right side of the string. class:word {n/a} {n/a} s all
s:skip - - - Internal helper function used to skip over a string in a definition. class:word {n/a} {n/a} s all
-s:split sc-ss - - Split a string on the first occurrance of the specified character. class:word {n/a} {n/a} s all
-s:split-on-string ss-ss - - Split a string on the first occurrance of the specified string. After the split, the top stack item will be the part of the string before the specified subsring, and the second item will be the rest of the original string. class:word 'Hello_Brave_World! 'Brave s:split-on-string s:put nl s:put nl {n/a} s all
+s:split sc-ss - - Split a string on the first occurrence of the specified character. class:word {n/a} {n/a} s all
+s:split-on-string ss-ss - - Split a string on the first occurrence of the specified string. After the split, the top stack item will be the part of the string before the specified subsring, and the second item will be the rest of the original string. class:word 'Hello_Brave_World! 'Brave s:split-on-string s:put nl s:put nl {n/a} s all
s:substr sfl-s - - Extract a substring from the specified string. This will take the characters starting at `f` and extend `l` characters in length. class:word {n/a} {n/a} s all
s:temp s-s - - Move a string into the temporary string buffers. class:word {n/a} {n/a} s all
s:to-float s- - -F Convert a string representation into a floating point value. class:word {n/a} {n/a} s rre