changed type() to typeof() in docs and error messages (#14084)

This commit is contained in:
hlaaftana
2020-04-24 10:22:12 +03:00
committed by GitHub
parent dd5ccc3e5a
commit b2141fc2a1
9 changed files with 13 additions and 13 deletions

View File

@@ -45,9 +45,9 @@ proc `$`*(t: typedesc): string {.magic: "TypeTrait".}
## `typetraits module <typetraits.html>`_.
##
## .. code-block:: Nim
## doAssert $(type(42)) == "int"
## doAssert $(type("Foo")) == "string"
## static: doAssert $(type(@['A', 'B'])) == "seq[char]"
## doAssert $(typeof(42)) == "int"
## doAssert $(typeof("Foo")) == "string"
## static: doAssert $(typeof(@['A', 'B'])) == "seq[char]"
when defined(nimHasIsNamedTuple):
proc isNamedTuple(T: typedesc): bool {.magic: "TypeTrait".}