summary refs log tree commit diff stats
path: root/examples/keyval2.nim
diff options
context:
space:
mode:
Diffstat (limited to 'examples/keyval2.nim')
-rwxr-xr-xexamples/keyval2.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/keyval2.nim b/examples/keyval2.nim
index 5e7d0ea4a..2a5643276 100755
--- a/examples/keyval2.nim
+++ b/examples/keyval2.nim
@@ -3,5 +3,5 @@ import pegs
 
 for x in lines("myfile.txt"):
   if x =~ peg"{\ident} \s* '=' \s* {.*}":
-    echo "Key: ", matches[1], 
-         " Value: ", matches[2]
+    echo "Key: ", matches[0],
+         " Value: ", matches[1]