summaryrefslogtreecommitdiffstats
path: root/src/corelib/text/qbytearray.cpp
diff options
context:
space:
mode:
authorVolker Hilsheimer <volker.hilsheimer@qt.io>2020-12-07 10:53:50 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2020-12-08 22:18:06 +0000
commit53497d217feb49329d2627ec174f8f397ffde5aa (patch)
treef2f6f09b04b533cb57ebae80a79efb3194508380 /src/corelib/text/qbytearray.cpp
parent6c546342c2de23cb2061b78c422eb61a53ebf017 (diff)
Fix qdoc warning from incorrectly named method parameter
Amends 2eb7d6073d5132a8bf269f5c6fc9f89fde446ab5. Task-number: QTBUG-87962 Change-Id: I55c9e8cf7db9e1e1644a76f29a9dc61b161ae551 Reviewed-by: Ivan Solovev <ivan.solovev@qt.io> Reviewed-by: Andreas Buhr <andreas.buhr@qt.io> Reviewed-by: Sona Kurazyan <sona.kurazyan@qt.io> (cherry picked from commit cd32e5d746c5fabae443da01d7323cf90bafe222) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'src/corelib/text/qbytearray.cpp')
-rw-r--r--src/corelib/text/qbytearray.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/text/qbytearray.cpp b/src/corelib/text/qbytearray.cpp
index 21f187012b..89c7e0db66 100644
--- a/src/corelib/text/qbytearray.cpp
+++ b/src/corelib/text/qbytearray.cpp
@@ -1982,9 +1982,9 @@ QByteArray& QByteArray::append(char ch)
above by at least one position further in memory.
//! [array-grow-at-insertion]
- This array grows to accommodate the insertion. If \a position is beyond
+ This array grows to accommodate the insertion. If \a i is beyond
the end of the array, the array is first extended with space characters
- to reach this \a position.
+ to reach this \a i.
//! [array-grow-at-insertion]
\sa append(), prepend(), replace(), remove()