summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorStian Sandvik Thomassen <stian.thomassen@nokia.com>2009-08-18 04:59:57 (GMT)
committerStian Sandvik Thomassen <stian.thomassen@nokia.com>2009-08-18 04:59:57 (GMT)
commit1ddf4ae979e3b573f45a99ac92838e098dfc8e45 (patch)
tree81b4aadd9c1a7cbd8408a85bc2ba06538f0ce545 /doc
parenta23f8fac82698a960996e22c08514a133396e0cb (diff)
downloadQt-1ddf4ae979e3b573f45a99ac92838e098dfc8e45.zip
Qt-1ddf4ae979e3b573f45a99ac92838e098dfc8e45.tar.gz
Qt-1ddf4ae979e3b573f45a99ac92838e098dfc8e45.tar.bz2
Doc: sorted list correctly for qLess() documentation
Diffstat (limited to 'doc')
-rw-r--r--doc/src/snippets/code/doc_src_qalgorithms.qdoc2
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]