diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2016-02-06 15:29:25 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2016-02-06 15:29:25 +0100 |
commit | 58f6bfb1dc44fc0cf406df6ddb3aae0c3974ed03 (patch) | |
tree | e124cba307a57a4de72754654791d00eb48b2770 /compiler/astalgo.nim | |
parent | 19677a11b0680f5e76300608bc6dd61fd90229e8 (diff) | |
parent | 3941b8968cd44e4c629e29493fc4c8ffda5005f8 (diff) | |
download | Nim-58f6bfb1dc44fc0cf406df6ddb3aae0c3974ed03.tar.gz |
Merge branch 'devel' of github.com:nim-lang/Nim into devel
Diffstat (limited to 'compiler/astalgo.nim')
-rw-r--r-- | compiler/astalgo.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/astalgo.nim b/compiler/astalgo.nim index 3ba43b4c5..1a70875d4 100644 --- a/compiler/astalgo.nim +++ b/compiler/astalgo.nim @@ -137,7 +137,7 @@ proc sameValue*(a, b: PNode): bool = of nkStrLit..nkTripleStrLit: if b.kind in {nkStrLit..nkTripleStrLit}: result = a.strVal == b.strVal else: - # don't raise an internal error for 'nimrod check': + # don't raise an internal error for 'nim check': #InternalError(a.info, "SameValue") discard @@ -152,7 +152,7 @@ proc leValue*(a, b: PNode): bool = of nkStrLit..nkTripleStrLit: if b.kind in {nkStrLit..nkTripleStrLit}: result = a.strVal <= b.strVal else: - # don't raise an internal error for 'nimrod check': + # don't raise an internal error for 'nim check': #InternalError(a.info, "leValue") discard |