diff --git a/src/corelib/tools/qvarlengtharray.qdoc b/src/corelib/tools/qvarlengtharray.qdoc index 827f6ed165c..0ba939ab60b 100644 --- a/src/corelib/tools/qvarlengtharray.qdoc +++ b/src/corelib/tools/qvarlengtharray.qdoc @@ -759,19 +759,18 @@ */ /*! - \fn template QVarLengthArray::emplace(const_iterator before, Args &&...args); + \fn template template QVarLengthArray::iterator QVarLengthArray::emplace(const_iterator pos, Args &&...args) \since 6.3 Inserts an item in front of the item pointed to by the iterator - \a before, passing \a args to its constructor. + \a pos, passing \a args to its constructor. Returns an iterator pointing at the emplaced item. */ /*! - \fn template QVarLengthArray::emplace_back(Args &&...args); - + \fn template template T &QVarLengthArray::emplace_back(Args &&...args) \since 6.3 Inserts an item at the back of this QVarLengthArray, passing