Fix the name of the iterator functions to match the coding standards.
[oota-llvm.git] / docs / AliasAnalysis.rst
index 1cbaee703f30be47ff47ea1e3d9914d646addbce..f62cc3fe4d3150895b0b408acfe5d07ebe0761bf 100644 (file)
@@ -286,8 +286,8 @@ Mod/Ref result, simply return whatever the superclass computes.  For example:
 
 .. code-block:: c++
 
-  AliasAnalysis::AliasResult alias(const Value *V1, unsigned V1Size,
-                                   const Value *V2, unsigned V2Size) {
+  AliasResult alias(const Value *V1, unsigned V1Size,
+                    const Value *V2, unsigned V2Size) {
     if (...)
       return NoAlias;
     ...