summary refs log tree commit diff stats
path: root/compiler/semcall.nim
diff options
context:
space:
mode:
authorDominik Picheta <dominikpicheta@googlemail.com>2015-06-05 14:50:14 +0100
committerDominik Picheta <dominikpicheta@googlemail.com>2015-06-05 14:50:14 +0100
commit1cf1610bdf19282b5bc9481fd27b05246a72c176 (patch)
tree2df8cf32718cded675894d4401418765bab2f0e8 /compiler/semcall.nim
parent5d6f16cc1ac066aad6d4a8146a558d073b860d12 (diff)
downloadNim-1cf1610bdf19282b5bc9481fd27b05246a72c176.tar.gz
Rename errUndeclaredProcedure to errUndeclaredRoutine.
Diffstat (limited to 'compiler/semcall.nim')
-rw-r--r--compiler/semcall.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/semcall.nim b/compiler/semcall.nim
index fc51ac849..571504c3a 100644
--- a/compiler/semcall.nim
+++ b/compiler/semcall.nim
@@ -212,7 +212,7 @@ proc resolveOverloads(c: PContext, n, orig: PNode,
       if nfDotField in n.flags and nfExplicitCall notin n.flags:
         localError(n.info, errUndeclaredField, considerQuotedIdent(f).s)
       else:
-        localError(n.info, errUndeclaredProcedure, considerQuotedIdent(f).s)
+        localError(n.info, errUndeclaredRoutine, considerQuotedIdent(f).s)
       return
     elif result.state != csMatch:
       if nfExprCall in n.flags: