Skip to content

Commit 2b88bb9

Browse files
committed
Upate README
1 parent f89bb80 commit 2b88bb9

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Implementation of `Lox` interpreter as described in [Crafting Interpreters](https://craftinginterpreters.com/).
44

5-
1. [Scanning](Scanner.hs) - [Commentary](https://gdevanla.github.io/posts/crafting-interpreter-scanning.html)
5+
1. [Scanning](src/Scanner.hs) - [Commentary](https://gdevanla.github.io/posts/crafting-interpreter-scanning.html)
66

77

88
## Execute

src/Scanner.hs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,6 @@ scanDouble = do
179179
void $ char '.'
180180
secondPart <- Text.Parsec.many1 digit <* whitespace
181181
return $ NUMBER $ read $ Import.concat [firstPart, ".", secondPart]
182-
183182
-- -- https://stackoverflow.com/questions/24106314/parser-for-quoted-string-using-parsec
184183
escape :: Parser String
185184
escape = do

0 commit comments

Comments
 (0)