[llvm] r177778 - [docs] Slight reword for precision.

Sean Silva silvas at purdue.edu
Fri Mar 22 16:52:38 PDT 2013


Author: silvas
Date: Fri Mar 22 18:52:38 2013
New Revision: 177778

URL: http://llvm.org/viewvc/llvm-project?rev=177778&view=rev
Log:
[docs] Slight reword for precision.

The new wording cannot be construed as suggesting the use of
SmallVectorImpl<T> as e.g. a class member (just because the class
happens to be in an interface).

Modified:
    llvm/trunk/docs/ProgrammersManual.rst

Modified: llvm/trunk/docs/ProgrammersManual.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/ProgrammersManual.rst?rev=177778&r1=177777&r2=177778&view=diff
==============================================================================
--- llvm/trunk/docs/ProgrammersManual.rst (original)
+++ llvm/trunk/docs/ProgrammersManual.rst Fri Mar 22 18:52:38 2013
@@ -628,7 +628,7 @@ SmallVector also provides a nice portabl
 
 .. note::
 
-   Prefer to use ``SmallVectorImpl<T>`` in interfaces.
+   Prefer to use ``SmallVectorImpl<T>`` as a parameter type.
 
    In APIs that don't care about the "small size" (most?), prefer to use
    the ``SmallVectorImpl<T>`` class, which is basically just the "vector





More information about the llvm-commits mailing list