[llvm] r280461 - [Docs] Fix another typo in the Error/Expected docs.

Lang Hames via llvm-commits llvm-commits at lists.llvm.org
Thu Sep 1 20:50:50 PDT 2016


Author: lhames
Date: Thu Sep  1 22:50:50 2016
New Revision: 280461

URL: http://llvm.org/viewvc/llvm-project?rev=280461&view=rev
Log:
[Docs] Fix another typo in the Error/Expected docs.

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=280461&r1=280460&r2=280461&view=diff
==============================================================================
--- llvm/trunk/docs/ProgrammersManual.rst (original)
+++ llvm/trunk/docs/ProgrammersManual.rst Thu Sep  1 22:50:50 2016
@@ -414,8 +414,8 @@ the boolean conversion operator):
 
   // Safe to continue: Err was checked.
 
-In contrast, the following code will always cause an abort, regardless of the
-return value of ``foo``:
+In contrast, the following code will always cause an abort, even if ``canFail``
+returns a success value:
 
 .. code-block:: c++
 




More information about the llvm-commits mailing list