summary refs log tree commit diff stats
path: root/examples
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2014-08-29 09:03:00 +0200
committerAraq <rumpf_a@web.de>2014-08-29 09:03:00 +0200
commitcd2c6128d1df471830ea7f842b57aa32aee5deab (patch)
tree47270f291b54bdb2e9bd66e40b9628968a1e1260 /examples
parent0f4567d59e8d0910be344babeef1b5a62f410b14 (diff)
downloadNim-cd2c6128d1df471830ea7f842b57aa32aee5deab.tar.gz
renamed babelcmd to nimblecmd; config files are now nim.cfg; other renamings
Diffstat (limited to 'examples')
-rw-r--r--examples/parsecfgex.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/parsecfgex.nim b/examples/parsecfgex.nim
index 618ecadd6..0f37a0378 100644
--- a/examples/parsecfgex.nim
+++ b/examples/parsecfgex.nim
@@ -4,7 +4,7 @@ import
   
 var f = newFileStream(paramStr(1), fmRead)
 if f != nil:
-  var p: TCfgParser
+  var p: CfgParser
   open(p, f, paramStr(1))
   while true:
     var e = next(p)