summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorVolker Hilsheimer <volker.hilsheimer@qt.io>2020-12-07 10:53:50 +0100
committerVolker Hilsheimer <volker.hilsheimer@qt.io>2020-12-08 16:00:54 +0100
commitcd32e5d746c5fabae443da01d7323cf90bafe222 (patch)
treeb8fca0d2f848700c8fb3ab3817519cdff8a8945f /src
parentd75dc06f6a35db610fdd8778504ffaf0a82aa8f5 (diff)
Fix qdoc warning from incorrectly named method parameter
Amends 2eb7d6073d5132a8bf269f5c6fc9f89fde446ab5. Pick-to: 6.0 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>
Diffstat (limited to 'src')
-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 631548a841..a815037a73 100644
--- a/src/corelib/text/qbytearray.cpp
+++ b/src/corelib/text/qbytearray.cpp
@@ -1997,9 +1997,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()