summary refs log tree commit diff stats
path: root/examples/keyval.nim
diff options
context:
space:
mode:
Diffstat (limited to 'examples/keyval.nim')
-rwxr-xr-xexamples/keyval.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/keyval.nim b/examples/keyval.nim
index 19a430a1e..ae8cb8f08 100755
--- a/examples/keyval.nim
+++ b/examples/keyval.nim
@@ -3,7 +3,7 @@ import re
 
 for x in lines("myfile.txt"):
   if x =~ re"(\w+)=(.*)":
-    echo "Key: ", matches[0], 
+    echo "Key: ", matches[0],
          " Value: ", matches[1]