aboutsummaryrefslogtreecommitdiff
path: root/core/text
diff options
context:
space:
mode:
authorDoeke Wartena <clankill3r@gmail.com>2024-11-07 20:15:22 +0100
committerGitHub <noreply@github.com>2024-11-07 20:15:22 +0100
commitb492b73ff24841f552010344eb5982966bcd3ccb (patch)
tree73893a94bedb77b18890d5423de05125e58b07e6 /core/text
parent1b16ddbb3e30ad09b6a21bd2ee69fa228bf6045a (diff)
Update scanner.odin
remove duplicated wording in comment
Diffstat (limited to 'core/text')
-rw-r--r--core/text/scanner/scanner.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/text/scanner/scanner.odin b/core/text/scanner/scanner.odin
index d27c66f24..24dbcc8a4 100644
--- a/core/text/scanner/scanner.odin
+++ b/core/text/scanner/scanner.odin
@@ -2,7 +2,7 @@
// It takes a string providing the source, which then can be tokenized through
// repeated calls to the scan procedure.
// For compatibility with existing tooling and languages, the NUL character is not allowed.
-// If an UTF-8 encoded byte order mark (BOM) is the first character in the first character in the source, it will be discarded.
+// If an UTF-8 encoded byte order mark (BOM) is the first character in the source, it will be discarded.
//
// By default, a Scanner skips white space and Odin comments and recognizes all literals defined by the Odin programming language specification.
// A Scanner may be customized to recognize only a subset of those literals and to recognize different identifiers and white space characters.