diff --git a/llvm/docs/ProgrammersManual.rst b/llvm/docs/ProgrammersManual.rst --- a/llvm/docs/ProgrammersManual.rst +++ b/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 ` than :ref:`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: