summary refs log tree commit diff stats
path: root/examples/keyval.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2017-11-21 01:42:58 +0100
committerAraq <rumpf_a@web.de>2017-11-21 01:42:58 +0100
commit1bbab827c494d41cc87d6cb94524f5f23c54fe88 (patch)
tree4fbc478c72dbdc0dd5b84e6b1e581e7fa934d91e /examples/keyval.nim
parentfba5f5acd6ab1b0aaca79241f55f95b089fbad2c (diff)
parent2ad49836d95f5d825ba271d64cab1c312f3ccc31 (diff)
downloadNim-1bbab827c494d41cc87d6cb94524f5f23c54fe88.tar.gz
Merge branch 'devel' of github.com:nim-lang/Nim into devel
Diffstat (limited to 'examples/keyval.nim')
-rw-r--r--examples/keyval.nim3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/keyval.nim b/examples/keyval.nim
index ae8cb8f08..a594c0fa8 100644
--- a/examples/keyval.nim
+++ b/examples/keyval.nim
@@ -3,7 +3,6 @@ import re
 
 for x in lines("myfile.txt"):
   if x =~ re"(\w+)=(.*)":
-    echo "Key: ", matches[0],
-         " Value: ", matches[1]
+    echo "Key: ", matches[0], " Value: ", matches[1]