[PATCH] D114850: [Docs] Typo fix
Shivam Gupta via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Nov 30 23:54:41 PST 2021
xgupta created this revision.
xgupta added a reviewer: MaskRay.
xgupta requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D114850
Files:
llvm/docs/ProgrammersManual.rst
Index: llvm/docs/ProgrammersManual.rst
===================================================================
--- llvm/docs/ProgrammersManual.rst
+++ llvm/docs/ProgrammersManual.rst
@@ -1481,7 +1481,7 @@
can be a big deal. If you have a vector that usually only contains a few
elements (but could contain many), for example, it's much better to use
:ref:`SmallVector <dss_smallvector>` than :ref:`vector <dss_vector>`. Doing so
-avoids (relatively) expensive malloc/free calls, which dwarf the cost of adding
+avoids (relatively) expensive malloc/free calls, which drop the cost of adding
the elements to the container.
.. _ds_sequential:
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D114850.390926.patch
Type: text/x-patch
Size: 645 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20211201/8c435a79/attachment.bin>
More information about the llvm-commits
mailing list