summary refs log tree commit diff stats
path: root/tools
diff options
context:
space:
mode:
authornarimiran <narimiran@disroot.org>2020-07-06 11:24:43 +0200
committernarimiran <narimiran@disroot.org>2020-07-06 11:24:43 +0200
commit46aacf917f39d02c96175d358e7a76fc875ea070 (patch)
tree6f9595ae320659f6969f6cc743d2e39041aeca22 /tools
parentebaf603c84a569b8de447fdb66bb05124d3a0772 (diff)
downloadNim-46aacf917f39d02c96175d358e7a76fc875ea070.tar.gz
Fix style inconsistencies due to the previous commit
Diffstat (limited to 'tools')
-rw-r--r--tools/nimfind.nim8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/nimfind.nim b/tools/nimfind.nim
index 6a4585c7e..05980d740 100644
--- a/tools/nimfind.nim
+++ b/tools/nimfind.nim
@@ -182,10 +182,10 @@ proc processCmdLine*(pass: TCmdLinePass, cmd: string; conf: ConfigRef) =
     parseopt.next(p)
     case p.kind
     of cmdEnd: break
-    of cmdLongoption, cmdShortOption:
+    of cmdLongOption, cmdShortOption:
       case p.key.normalize
       of "help", "h":
-        stdout.writeline(Usage)
+        stdout.writeLine(Usage)
         quit()
       of "project":
         conf.projectName = p.val
@@ -215,7 +215,7 @@ proc handleCmdLine(cache: IdentCache; conf: ConfigRef) =
   self.initDefinesProg(conf, "nimfind")
 
   if paramCount() == 0:
-    stdout.writeline(Usage)
+    stdout.writeLine(Usage)
     return
 
   self.processCmdLineAndProjectPath(conf)
@@ -231,4 +231,4 @@ proc handleCmdLine(cache: IdentCache; conf: ConfigRef) =
 
   discard self.loadConfigsAndRunMainCommand(cache, conf)
 
-handleCmdline(newIdentCache(), newConfigRef())
+handleCmdLine(newIdentCache(), newConfigRef())