From 346963fe048aa5f68fce744be8d64c78d35ed08a Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Fri, 5 Aug 2022 09:15:44 +0200 Subject: [PATCH] Update docs/mkdocs/docs/api/basic_json/boolean_t.md Co-authored-by: Florian Albrechtskirchinger --- docs/mkdocs/docs/api/basic_json/boolean_t.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/mkdocs/docs/api/basic_json/boolean_t.md b/docs/mkdocs/docs/api/basic_json/boolean_t.md index 7dee36bb3..e3a783027 100644 --- a/docs/mkdocs/docs/api/basic_json/boolean_t.md +++ b/docs/mkdocs/docs/api/basic_json/boolean_t.md @@ -7,7 +7,7 @@ using boolean_t = BooleanType; The type used to store JSON booleans. [RFC 8259](https://tools.ietf.org/html/rfc8259) implicitly describes a boolean as a type which differentiates the two -literals`#!json true` and `#!json false`. +literals `#!json true` and `#!json false`. To store objects in C++, a type is defined by the template parameter `BooleanType` which chooses the type to use.