summaryrefslogtreecommitdiff
path: root/docs/ProgrammersManual.rst
diff options
context:
space:
mode:
authorLang Hames <lhames@gmail.com>2016-09-02 03:50:50 +0000
committerLang Hames <lhames@gmail.com>2016-09-02 03:50:50 +0000
commit08f7f18b9feb2bd68adfc0c6e359e1446018c648 (patch)
treea3a7cfbf9bb9f3af93c0b1ec823a8991d55a49e5 /docs/ProgrammersManual.rst
parent8ebfd8657771520cd4c3e520e51022bfdf6c6d09 (diff)
[Docs] Fix another typo in the Error/Expected docs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@280461 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/ProgrammersManual.rst')
-rw-r--r--docs/ProgrammersManual.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ProgrammersManual.rst b/docs/ProgrammersManual.rst
index 0ab1a4c585d..bb144bb88d3 100644
--- a/docs/ProgrammersManual.rst
+++ b/docs/ProgrammersManual.rst
@@ -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++