[llvm] r312027 - [docs] Fix Scudo documentation error

Kostya Kortchinsky via llvm-commits llvm-commits at lists.llvm.org
Tue Aug 29 12:54:20 PDT 2017


Author: cryptoad
Date: Tue Aug 29 12:54:19 2017
New Revision: 312027

URL: http://llvm.org/viewvc/llvm-project?rev=312027&view=rev
Log:
[docs] Fix Scudo documentation error

Summary: No Pygments lexer found for "none".

Reviewers: flowerhack

Reviewed By: flowerhack

Differential Revision: https://reviews.llvm.org/D37270

Modified:
    llvm/trunk/docs/ScudoHardenedAllocator.rst

Modified: llvm/trunk/docs/ScudoHardenedAllocator.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/ScudoHardenedAllocator.rst?rev=312027&r1=312026&r2=312027&view=diff
==============================================================================
--- llvm/trunk/docs/ScudoHardenedAllocator.rst (original)
+++ llvm/trunk/docs/ScudoHardenedAllocator.rst Tue Aug 29 12:54:19 2017
@@ -94,7 +94,7 @@ functions.
 
 You may also build Scudo like this: 
 
-.. code:: none
+.. code::
 
   cd $LLVM/projects/compiler-rt/lib
   clang++ -fPIC -std=c++11 -msse4.2 -O2 -I. scudo/*.cpp \
@@ -103,7 +103,7 @@ You may also build Scudo like this:
 
 and then use it with existing binaries as follows:
 
-.. code:: none
+.. code::
 
   LD_PRELOAD=`pwd`/scudo-allocator.so ./a.out
 
@@ -124,7 +124,7 @@ can be assigned in the same string, sepa
 
 For example, using the environment variable:
 
-.. code:: none
+.. code::
 
   SCUDO_OPTIONS="DeleteSizeMismatch=1:QuarantineSizeKb=64" ./a.out
 




More information about the llvm-commits mailing list