1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 03:02:36 +01:00

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

llvm-svn: 280461
This commit is contained in:
Lang Hames 2016-09-02 03:50:50 +00:00
parent 0f68dae0fe
commit 1c1b097d52

View 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++