summaryrefslogtreecommitdiff
path: root/include/value.h
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-15 22:18:44 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-15 22:18:44 +0100
commita471f0f0c4c09c8f83197568af7becfbf28f2e37 (patch)
tree009a321b276f219cdd6a899b2df1cab874a032a9 /include/value.h
parent895f6315eb306a677bddba86980de8f8ee824efe (diff)
renamed reserve to resize
Diffstat (limited to 'include/value.h')
-rw-r--r--include/value.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/value.h b/include/value.h
index ed0367c..8fea5a6 100644
--- a/include/value.h
+++ b/include/value.h
@@ -379,18 +379,18 @@ public:
* variables - other variables return nullptr.
*
* If you are going to write to the buffer, make sure that you first call
- * the reserve() method to ensure that the buffer is big enough.
+ * the resize() method to ensure that the buffer is big enough.
*
* @return char *
*/
char *buffer() const;
/**
- * Reserve enough space in the buffer. 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 reserve() method.
- * This will also turn the Value object into a string (if it was not
- * already a string). The writable buffer is returned.
+ * 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
+ * turn the Value object into a string (if it was not already a string).
+ * The writable buffer is returned.
*
* @param size
* @return char*