commit | a1f87e5a1ccedd3525e7752c1012e58df4346f36 | [log] [tgz] |
---|---|---|
author | Kostya Serebryany <kcc@google.com> | Mon Oct 31 21:10:26 2016 +0000 |
committer | Kostya Serebryany <kcc@google.com> | Mon Oct 31 21:10:26 2016 +0000 |
tree | 79b729203d284d1bfb05e064056a42f90f6643e8 | |
parent | 20df4ecf4f5a07ec4a16d9435174d3ef2bf9c729 [diff] [blame] |
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) llvm-svn: 285639
diff --git a/llvm/docs/ProgrammersManual.rst b/llvm/docs/ProgrammersManual.rst index e6362b8..bbcb15a 100644 --- a/llvm/docs/ProgrammersManual.rst +++ b/llvm/docs/ProgrammersManual.rst
@@ -456,9 +456,9 @@ .. 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);