OSDN Git Service

[docs] Fix Scudo documentation error
authorKostya Kortchinsky <kostyak@google.com>
Tue, 29 Aug 2017 19:54:19 +0000 (19:54 +0000)
committerKostya Kortchinsky <kostyak@google.com>
Tue, 29 Aug 2017 19:54:19 +0000 (19:54 +0000)
Summary: No Pygments lexer found for "none".

Reviewers: flowerhack

Reviewed By: flowerhack

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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@312027 91177308-0d34-0410-b5e6-96231b3b80d8

docs/ScudoHardenedAllocator.rst

index 43d964f..562a391 100644 (file)
@@ -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, separated by colons.
 
 For example, using the environment variable:
 
-.. code:: none
+.. code::
 
   SCUDO_OPTIONS="DeleteSizeMismatch=1:QuarantineSizeKb=64" ./a.out