Fix documentation on the path to Bitcode reader/writer
authorMichael Liao <michael.liao@intel.com>
Tue, 11 Jun 2013 18:09:21 +0000 (18:09 +0000)
committerMichael Liao <michael.liao@intel.com>
Tue, 11 Jun 2013 18:09:21 +0000 (18:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183761 91177308-0d34-0410-b5e6-96231b3b80d8

docs/ExtendingLLVM.rst
docs/GettingStarted.rst

index 3ae676a1b6e70814197cbe16a809270dba6df1cb..60cbf011e5731b9c77f62f5351f986fd71e89834 100644 (file)
@@ -281,12 +281,12 @@ Adding a derived type
 
    add ability to parse in the type from text assembly
 
-#. ``llvm/lib/BitCode/Writer/Writer.cpp``:
+#. ``llvm/lib/Bitcode/Writer/Writer.cpp``:
 
    modify ``void BitcodeWriter::outputType(const Type *T)`` to serialize your
    type
 
-#. ``llvm/lib/BitCode/Reader/Reader.cpp``:
+#. ``llvm/lib/Bitcode/Reader/Reader.cpp``:
 
    modify ``const Type *BitcodeReader::ParseType()`` to read your data type
 
index dafc0c45b6cdd5973a5c1663fd385487dd382f27..3498b88f511218351998e12b0b0a7875a7349cf4 100644 (file)
@@ -1074,7 +1074,7 @@ different `tools`_.
   This directory holds the source code for the LLVM assembly language parser
   library.
 
-``llvm/lib/BitCode/``
+``llvm/lib/Bitcode/``
 
   This directory holds code for reading and write LLVM bitcode.