diff options
author | Thomas Zander <t.zander@nokia.com> | 2010-01-19 10:54:00 (GMT) |
---|---|---|
committer | Thomas Zander <t.zander@nokia.com> | 2010-01-19 10:54:00 (GMT) |
commit | 001549276ac554e57d90c0c30130b7796ae69419 (patch) | |
tree | 543d8f38cc5df2fd148d4dc37c9be44764999ef6 /doc | |
parent | 437a67eb055c688ea4b778f5cfc9132fe02063c6 (diff) | |
download | Qt-001549276ac554e57d90c0c30130b7796ae69419.zip Qt-001549276ac554e57d90c0c30130b7796ae69419.tar.gz Qt-001549276ac554e57d90c0c30130b7796ae69419.tar.bz2 |
Fix Typo
Reviewed-by: Alan Alpert
Diffstat (limited to 'doc')
-rw-r--r-- | doc/src/snippets/qstring/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/snippets/qstring/main.cpp b/doc/src/snippets/qstring/main.cpp index 629586e..3be504c 100644 --- a/doc/src/snippets/qstring/main.cpp +++ b/doc/src/snippets/qstring/main.cpp @@ -802,7 +802,7 @@ void Widget::toLowerFunction() { //! [75] QString str = "Qt by NOKIA"; - str = str.toLower(); // str == "qy by nokia" + str = str.toLower(); // str == "qt by nokia" //! [75] } |