diff options
author | David Boddie <dboddie@trolltech.com> | 2009-08-18 14:25:58 (GMT) |
---|---|---|
committer | David Boddie <dboddie@trolltech.com> | 2009-08-18 14:25:58 (GMT) |
commit | d136f3c444041d07a7a5fe9358c9200c8bdb7602 (patch) | |
tree | 5acceecd6879d3c96fc51c3a9dda89c7e118b55d /doc/src/snippets/code | |
parent | e1869593a4c2a074cc916c770e258d6f2349db01 (diff) | |
parent | 68b7514840fe29f84af8d418538084ed337bd171 (diff) | |
download | Qt-d136f3c444041d07a7a5fe9358c9200c8bdb7602.zip Qt-d136f3c444041d07a7a5fe9358c9200c8bdb7602.tar.gz Qt-d136f3c444041d07a7a5fe9358c9200c8bdb7602.tar.bz2 |
Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qt
Diffstat (limited to 'doc/src/snippets/code')
-rw-r--r-- | doc/src/snippets/code/doc_src_qalgorithms.qdoc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/snippets/code/doc_src_qalgorithms.qdoc b/doc/src/snippets/code/doc_src_qalgorithms.qdoc index 69d943c..e2126dd 100644 --- a/doc/src/snippets/code/doc_src_qalgorithms.qdoc +++ b/doc/src/snippets/code/doc_src_qalgorithms.qdoc @@ -302,7 +302,7 @@ list.clear(); QList<int> list; list << 33 << 12 << 68 << 6 << 12; qSort(list.begin(), list.end(), qLess<int>()); -// list: [ 68, 33, 12, 12, 6 ] +// list: [ 6, 12, 12, 33, 68 ] //! [24] |