diff options
author | Terence Namusonge <terence.namusonge@gmail.com> | 2018-04-25 14:30:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-25 14:30:54 +0200 |
commit | e1cd4bca0e74e394f75eb68c6c14ebc54205c369 (patch) | |
tree | 211fa15a9e55725a8f71346c827e1ccd54d9e073 | |
parent | e931f3b5a9643e0d7ac45b88b0bddb32dda4c540 (diff) | |
download | Nim-e1cd4bca0e74e394f75eb68c6c14ebc54205c369.tar.gz |
tiny typo
-rw-r--r-- | lib/pure/json.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/json.nim b/lib/pure/json.nim index 6740f483d..d2845795c 100644 --- a/lib/pure/json.nim +++ b/lib/pure/json.nim @@ -721,7 +721,7 @@ proc getBool*(n: JsonNode, default: bool = false): bool = else: return n.bval proc getBVal*(n: JsonNode, default: bool = false): bool {.deprecated.} = - ## Deprecated - use getBVal instead + ## Deprecated - use getBool instead getBool(n, default) proc getFields*(n: JsonNode, |