From cd32e5d746c5fabae443da01d7323cf90bafe222 Mon Sep 17 00:00:00 2001 From: Volker Hilsheimer Date: Mon, 7 Dec 2020 10:53:50 +0100 Subject: [PATCH] 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 Reviewed-by: Andreas Buhr Reviewed-by: Sona Kurazyan --- src/corelib/text/qbytearray.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/corelib/text/qbytearray.cpp b/src/corelib/text/qbytearray.cpp index 631548a8414..a815037a734 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()