Fix documentations for declared (instead of defined)

This commit is contained in:
def
2015-02-18 01:55:50 +01:00
parent 5668ab3a49
commit 2647423502
2 changed files with 2 additions and 2 deletions

View File

@@ -243,7 +243,7 @@ proc semGenericStmt(c: PContext, n: PNode,
elif fn.kind == nkDotExpr:
result.sons[0] = fuzzyLookup(c, fn, flags, ctx, mixinContext)
first = 1
# Consider 'when defined(globalsSlot): ThreadVarSetValue(globalsSlot, ...)'
# Consider 'when declared(globalsSlot): ThreadVarSetValue(globalsSlot, ...)'
# in threads.nim: the subtle preprocessing here binds 'globalsSlot' which
# is not exported and yet the generic 'threadProcWrapper' works correctly.
let flags = if mixinContext: flags+{withinMixin} else: flags

View File

@@ -124,7 +124,7 @@ proc declared*(x: expr): bool {.magic: "Defined", noSideEffect.}
## feature or not:
##
## .. code-block:: Nim
## when not defined(strutils.toUpper):
## when not declared(strutils.toUpper):
## # provide our own toUpper proc here, because strutils is
## # missing it.