From 2a98c7ddfd01331b47eef963d00590399d4507c4 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Sat, 3 May 2014 22:10:10 +1000 Subject: Parser now parses nodes with arbitrary names (prev commit could just construct graphs out of them) --- src/Grasp/Parser.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Grasp/Parser.hs b/src/Grasp/Parser.hs index 42af644..d22492a 100644 --- a/src/Grasp/Parser.hs +++ b/src/Grasp/Parser.hs @@ -136,7 +136,7 @@ edge = do ident = do - d <- some digit + d <- some (noneOf " \t\r\n") inLineWhSp return d -- cgit