aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/data/text/lexer.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/data/text/lexer.lux4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/lux/data/text/lexer.lux b/stdlib/source/lux/data/text/lexer.lux
index 45effa773..9ae2bdd8f 100644
--- a/stdlib/source/lux/data/text/lexer.lux
+++ b/stdlib/source/lux/data/text/lexer.lux
@@ -65,7 +65,7 @@
{#;doc "Lex a text if it matches the given sample."}
(-> Text (Lexer Unit))
(function [[offset tape]]
- (case (text;index-of reference offset tape)
+ (case (text;index-of' reference offset tape)
(#;Some where)
(if (n.= offset where)
(#E;Success [[(n.+ (text;size reference) offset) tape] []])
@@ -78,7 +78,7 @@
{#;doc "Lex a text if it matches the given sample."}
(-> Text (Lexer Bool))
(function [(^@ input [offset tape])]
- (case (text;index-of reference offset tape)
+ (case (text;index-of' reference offset tape)
(^multi (#;Some where) (n.= offset where))
(#E;Success [[(n.+ (text;size reference) offset) tape] true])