diff options
author | Johannes Schickel | 2010-05-30 13:41:40 +0000 |
---|---|---|
committer | Johannes Schickel | 2010-05-30 13:41:40 +0000 |
commit | 9521f8d0085f7159bf61770ef13e7f949c0a3fd0 (patch) | |
tree | e860ce2967092a464cf46cc3971fe6a171b1de17 | |
parent | f02e31f2fca7299695e006f0a0bffbebe115d8e9 (diff) | |
download | scummvm-rg350-9521f8d0085f7159bf61770ef13e7f949c0a3fd0.tar.gz scummvm-rg350-9521f8d0085f7159bf61770ef13e7f949c0a3fd0.tar.bz2 scummvm-rg350-9521f8d0085f7159bf61770ef13e7f949c0a3fd0.zip |
Typo fixes.
svn-id: r49324
-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; |