diff options
Diffstat (limited to 'lib/system.nim')
-rw-r--r-- | lib/system.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system.nim b/lib/system.nim index 3d5e5f972..82d3bb7f7 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -3663,7 +3663,7 @@ proc compiles*(x: untyped): bool {.magic: "Compiles", noSideEffect, compileTime. ## This can be used to check whether a type supports some operation: ## ## .. code-block:: Nim - ## when not compiles(3 + 4): + ## when compiles(3 + 4): ## echo "'+' for integers is available" discard |