[Docs] Fix another typo in the Error/Expected docs.
authorLang Hames <lhames@gmail.com>
Fri, 2 Sep 2016 03:50:50 +0000 (03:50 +0000)
committerLang Hames <lhames@gmail.com>
Fri, 2 Sep 2016 03:50:50 +0000 (03:50 +0000)
llvm-svn: 280461

llvm/docs/ProgrammersManual.rst

index 0ab1a4c..bb144bb 100644 (file)
@@ -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++