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

@@ -83,7 +83,7 @@ proc toJsKey*[T: SomeFloat](text: cstring, t: type T): T {.importcpp: "parseFloa
type
JsKey* = concept a, type T
cstring.toJsKey(T) is type(a)
cstring.toJsKey(T) is T
JsObject* = ref object of JsRoot
## Dynamically typed wrapper around a JavaScript object.

View File

@@ -48,7 +48,7 @@ proc genericHead*(t: typedesc): typedesc {.magic: "TypeTrait".}
## .. code-block:: nim
## type
## Functor[A] = concept f
## type MatchedGenericType = genericHead(f.type)
## type MatchedGenericType = genericHead(typeof(f))
## # `f` will be a value of a type such as `Option[T]`
## # `MatchedGenericType` will become the `Option` type

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".}