diff options
author | Jordi Vilalta Prat | 2010-06-07 17:17:41 +0000 |
---|---|---|
committer | Jordi Vilalta Prat | 2010-06-07 17:17:41 +0000 |
commit | 354499c7372956ff045c39c5b85456340e26526c (patch) | |
tree | da7c2e5451d773f60eda53ce7e33104a985955a0 /graphics | |
parent | 0e95d8a5faee7f674665067505635a9d31cc174b (diff) | |
download | scummvm-rg350-354499c7372956ff045c39c5b85456340e26526c.tar.gz scummvm-rg350-354499c7372956ff045c39c5b85456340e26526c.tar.bz2 scummvm-rg350-354499c7372956ff045c39c5b85456340e26526c.zip |
Fix some typos in a comment
svn-id: r49488
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/font.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/font.h b/graphics/font.h index 6927e0e076..0e65e9418c 100644 --- a/graphics/font.h +++ b/graphics/font.h @@ -67,10 +67,10 @@ public: int getStringWidth(const Common::String &str) const; /** - * Take a text (which may contain newlines characters) and word wrap it so thata + * Take a text (which may contain newline characters) and word wrap it so that * no text line is wider than maxWidth pixels. If necessary, additional line breaks - * are generated, preferably between words (i.e. were whitespaces are). - * The resulting lines are appended to the string list lines. + * are generated, preferably between words (i.e. where whitespaces are). + * The resulting lines are appended to the lines string list. * It returns the maximal width of any of the new lines (i.e. a value which is less * or equal to maxWidth). * |