diff options
author | flywind <xzsflywind@gmail.com> | 2021-08-19 21:54:45 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-19 21:54:45 +0800 |
commit | 8fa0decf6b4917e5559b9fd84a18825849dc11df (patch) | |
tree | 7c4a591a1d33b3d3ffaa2bcfc96637dceded1b42 | |
parent | 373bbd9bb4cbcb06fbfd80ab0e968127dc098873 (diff) | |
download | Nim-8fa0decf6b4917e5559b9fd84a18825849dc11df.tar.gz |
fix a typo (#18715)
-rw-r--r-- | compiler/semcall.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/semcall.nim b/compiler/semcall.nim index d8dba3e6c..2478420f7 100644 --- a/compiler/semcall.nim +++ b/compiler/semcall.nim @@ -280,7 +280,7 @@ const proc notFoundError*(c: PContext, n: PNode, errors: CandidateErrors) = # Gives a detailed error message; this is separated from semOverloadedCall, - # as semOverlodedCall is already pretty slow (and we need this information + # as semOverloadedCall is already pretty slow (and we need this information # only in case of an error). if c.config.m.errorOutputs == {}: # fail fast: |