summaryrefslogtreecommitdiff
path: root/docs/samples/load_memory.cpp
diff options
context:
space:
mode:
authorarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2010-06-30 12:47:19 +0000
committerarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2010-06-30 12:47:19 +0000
commite73b54e60d5b8bc4234d6c4cf4fa978e175d68cb (patch)
treee95b3b15488dac3a28bb9b0a8e6bbc79d81587c5 /docs/samples/load_memory.cpp
parent8b1a9951559fc6420aad68c4f4e23f8b470cec0c (diff)
docs: Fixed sample comment, adding load error handling sample, added custom writer sample
git-svn-id: http://pugixml.googlecode.com/svn/trunk@552 99668b35-9821-0410-8761-19e4c4f06640
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);