From 221eeb2312668cc5b401dbb5598356b1627cee3a Mon Sep 17 00:00:00 2001 From: kalabukdima Date: Mon, 24 May 2021 21:22:01 +0300 Subject: [PATCH] Fix typo in C++ doc (#6664) --- docs/source/CppUsage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/CppUsage.md b/docs/source/CppUsage.md index da7d1478a..0589fc51a 100644 --- a/docs/source/CppUsage.md +++ b/docs/source/CppUsage.md @@ -526,7 +526,7 @@ Creating a FlatBuffer is not thread safe. All state related to building a FlatBuffer is contained in a FlatBufferBuilder instance, and no memory outside of it is touched. To make this thread safe, either do not share instances of FlatBufferBuilder between threads (recommended), or -manually wrap it in synchronisation primites. There's no automatic way to +manually wrap it in synchronisation primitives. There's no automatic way to accomplish this, by design, as we feel multithreaded construction of a single buffer will be rare, and synchronisation overhead would be costly.