From a7b07321ba75d6fdb774353a893f390074dc6cae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20S=C3=A1nchez=20Ram=C3=ADrez?= Date: Sat, 7 Jan 2023 00:14:08 +0100 Subject: [PATCH] Fix code snippet example in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fee39f6..18f0171 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ In order to _lex_ or _tokenize_ a code string, call the `tokenize` function. > NOTE: This code result is not yet loyal to reality. ```julia julia> tokenize(Brainfuck, "[->+<]") -6-element Vector{Tuple{Token, SubString}}: +6-element Vector{Lexeme{T, SubString{String}} where T<:Token}: "[" => Brackets left "-" => Minus ">" => Greater than