aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2009-05-08 12:37:28 +0000
committerMax Horn2009-05-08 12:37:28 +0000
commitc91a6c97ae8f3b10ee33c91225ce2d865c2a268a (patch)
tree722d409a7c592f8cc98392c7c8043fe4b3f07ff7
parentc38c0980cddf6b3703f5d86f2004841fdbfca0c3 (diff)
downloadscummvm-rg350-c91a6c97ae8f3b10ee33c91225ce2d865c2a268a.tar.gz
scummvm-rg350-c91a6c97ae8f3b10ee33c91225ce2d865c2a268a.tar.bz2
scummvm-rg350-c91a6c97ae8f3b10ee33c91225ce2d865c2a268a.zip
Clarified docstring for String::insertChar
svn-id: r40382
-rw-r--r--common/str.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/str.h b/common/str.h
index 9c5e267f1c..4dc0f1be92 100644
--- a/common/str.h
+++ b/common/str.h
@@ -194,7 +194,7 @@ public:
/** Set character c at position p, replacing the previous character there. */
void setChar(char c, uint32 p);
- /** Set character c at position p. */
+ /** Insert character c before position p. */
void insertChar(char c, uint32 p);
/** Clears the string, making it empty. */