From: Kostya Serebryany Date: Mon, 31 Oct 2016 21:10:26 +0000 (+0000) Subject: docs: trying to fix the docs bot by removing non-ASCII characters. The docs build... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5956db4a7898771532da75e32a3e02978614148a;p=llvm 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 --- diff --git a/docs/ProgrammersManual.rst b/docs/ProgrammersManual.rst index e6362b864aa..bbcb15aa92b 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);