summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Wicking <paul.wicking@qt.io>2021-07-26 18:11:34 +0200
committerPaul Wicking <paul.wicking@qt.io>2021-07-28 01:43:09 +0200
commit017eb5627b2389089c46d7f226f233651e7c0458 (patch)
tree3c80a95c622bc41cecc68a5e177e1fd79856d7b0
parenta52e5689aa0f72e9618c482d7ca9cd99936a8c1c (diff)
Doc: Add missing comma
Fixes: QTBUG-95379 Pick-to: 6.2 Change-Id: Ie66feccff27d055a4ebd4f7b26313910934ad234 Reviewed-by: Nico Vertriest <nico.vertriest@qt.io>
-rw-r--r--src/corelib/text/qstringlist.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/text/qstringlist.cpp b/src/corelib/text/qstringlist.cpp
index c2eea609ea..687c83b8ab 100644
--- a/src/corelib/text/qstringlist.cpp
+++ b/src/corelib/text/qstringlist.cpp
@@ -108,7 +108,7 @@ QT_BEGIN_NAMESPACE
\section1 Adding Strings
Strings can be added to a list using the \l
- {QList::insert()}{insert()} \l
+ {QList::insert()}{insert()}, \l
{QList::append()}{append()}, \l
{QList::operator+=()}{operator+=()} and \l
{operator<<()} functions.