From 23390ded0e2867ebfcd29735bbcc0318e45a9fdf Mon Sep 17 00:00:00 2001 From: Daniel Parker Date: Thu, 24 Oct 2024 13:17:35 -0400 Subject: [PATCH] Doc update --- CHANGELOG.md | 3 +++ doc/ref/corelib/basic_json.md | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f7650b76..145dc0cc4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +0.178.0 +------- + 0.177.0 ------- diff --git a/doc/ref/corelib/basic_json.md b/doc/ref/corelib/basic_json.md index a92a233cd..61e016df0 100644 --- a/doc/ref/corelib/basic_json.md +++ b/doc/ref/corelib/basic_json.md @@ -21,7 +21,7 @@ namespace pmr { A `basic_json` is a union type that can hold one of a number of possible data members, some that require an allocator (a long string, byte string, array, or object), -and others that are trivially copyable that do not (an empty object, short string, number, boolean, or null). +and other trivially copyable ones that do not (an empty object, short string, number, boolean, or null). The data member may be tagged with a [semantic_tag](semantic_tag.md) that provides additional information about its value. The sizeof a `basic_json` regardless of its template parameters is normally 16 bytes.