summaryrefslogtreecommitdiffstats
path: root/docs/ProgrammersManual.rst
diff options
context:
space:
mode:
authorKostya Serebryany <kcc@google.com>2016-10-31 21:10:26 +0000
committerKostya Serebryany <kcc@google.com>2016-10-31 21:10:26 +0000
commit5956db4a7898771532da75e32a3e02978614148a (patch)
tree91c22c232228e7a219ffd9af8b8dac66d7f9bbbf /docs/ProgrammersManual.rst
parentd80a70ac3479a0342a1d1e85f17f4b1d76183db8 (diff)
docs: trying to fix the docs bot by removing non-ASCII characters. The docs build fine on my machine, bot fail on the bot (http://lab.llvm.org:8011/builders/llvm-sphinx-docs/builds/25/steps/docs-llvm-html/logs/stdio)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@285639 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 e6362b864aa5..bbcb15aa92b0 100644
--- a/docs/ProgrammersManual.rst
+++ b/docs/ProgrammersManual.rst
@@ -456,9 +456,9 @@ been activated:
.. code-block:: c++
handleErrors(
- processFormattedFile(…),
+ processFormattedFile(...),
[](const BadFileFormat &BFF) {
- report(“Unable to process “ + BFF.Path + “: bad format”);
+ report("Unable to process " + BFF.Path + ": bad format");
},
[](const FileNotFound &FNF) {
report("File not found " + FNF.Path);