diff options
-rw-r--r-- | common/str.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/str.h b/common/str.h index 74bcb42264..189c37adb4 100644 --- a/common/str.h +++ b/common/str.h @@ -222,10 +222,10 @@ public: typedef const char * const_iterator; iterator begin() { - // Since the user could potentionally + // Since the user could potentially // change the string via the returned // iterator we have to assure we are - // pointing to an unique storage. + // pointing to a unique storage. makeUnique(); return _str; |