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>
This commit is contained in:
Volker Hilsheimer 2020-12-07 10:53:50 +01:00 committed by Qt Cherry-pick Bot
parent 6c546342c2
commit 53497d217f

View File

@ -1982,9 +1982,9 @@ QByteArray& QByteArray::append(char ch)
above by at least one position further in memory. above by at least one position further in memory.
//! [array-grow-at-insertion] //! [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 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] //! [array-grow-at-insertion]
\sa append(), prepend(), replace(), remove() \sa append(), prepend(), replace(), remove()