summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-07-08 15:03:43 +0200
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-07-08 15:03:43 +0200
commitd0dbed9ed21123455adcd0277991036ad9bdbb06 (patch)
treece05d22dc2f730d5a9eb479b3e198622fda6c10c /include
parentca60a32c601fe9b0236d3d4717c7b94368a3c172 (diff)
in the documentation and source code comments, the old method name Value::resize() was used, while the actual name is reserve(), solves issue #102
Diffstat (limited to 'include')
-rw-r--r--include/value.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/value.h b/include/value.h
index e8337a0..f72304c 100644
--- a/include/value.h
+++ b/include/value.h
@@ -387,7 +387,7 @@ public:
* variables - other variables return nullptr.
*
* If you are going to write to the buffer, make sure that you first call
- * the resize() method to ensure that the buffer is big enough.
+ * the reserve() method to ensure that the buffer is big enough.
*
* @return char *
*/
@@ -396,7 +396,7 @@ public:
/**
* Resize buffer space. If you want to write directly to the buffer (which
* is returned by the buffer() method), you should first reserve enough
- * space in it. This can be done with this resize() method. This will also
+ * space in it. This can be done with this reserve() method. This will also
* turn the Value object into a string (if it was not already a string).
* The writable buffer is returned.
*