[llvm] r285639 - 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)
Kostya Serebryany via llvm-commits
llvm-commits at lists.llvm.org
Mon Oct 31 14:10:26 PDT 2016
Author: kcc
Date: Mon Oct 31 16:10:26 2016
New Revision: 285639
URL: http://llvm.org/viewvc/llvm-project?rev=285639&view=rev
Log:
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)
Modified:
llvm/trunk/docs/ProgrammersManual.rst
Modified: llvm/trunk/docs/ProgrammersManual.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/ProgrammersManual.rst?rev=285639&r1=285638&r2=285639&view=diff
==============================================================================
--- llvm/trunk/docs/ProgrammersManual.rst (original)
+++ llvm/trunk/docs/ProgrammersManual.rst Mon Oct 31 16:10:26 2016
@@ -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);
More information about the llvm-commits
mailing list