summaryrefslogtreecommitdiff
path: root/docs/samples/load_memory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'docs/samples/load_memory.cpp')
-rw-r--r--docs/samples/load_memory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/samples/load_memory.cpp b/docs/samples/load_memory.cpp
index b8d898f..5f975b2 100644
--- a/docs/samples/load_memory.cpp
+++ b/docs/samples/load_memory.cpp
@@ -22,7 +22,7 @@ int main()
{
//[code_load_memory_buffer_inplace
- // You can use load_buffer_inplace to load document from mutable memory block; memory blocks lifetime must exceed that of document
+ // You can use load_buffer_inplace to load document from mutable memory block; the block's lifetime must exceed that of document
char* buffer = new char[size];
memcpy(buffer, source, size);