summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Wicking <paul.wicking@qt.io>2021-07-26 18:11:34 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2021-07-28 01:21:08 +0000
commite208ea2d532440eb2e1d66b7bb539dc2a4ce2346 (patch)
tree5546440817aacce8d8cdd471b902c36800cdba7a
parent62b4c9169c23f510747a384fe3f1ed78bee4b435 (diff)
Doc: Add missing comma
Fixes: QTBUG-95379 Change-Id: Ie66feccff27d055a4ebd4f7b26313910934ad234 Reviewed-by: Nico Vertriest <nico.vertriest@qt.io> (cherry picked from commit 017eb5627b2389089c46d7f226f233651e7c0458) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-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 440e26bc89..35a4f01457 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.