Fixed minor documentation issues

Fixed whitespace and punctuation issues, added a name to a link, and
fixed a typo.
This commit is contained in:
Priyansh Singh 2022-03-31 07:35:40 -04:00 committed by Aaron Ballman
parent 2760cdc9c6
commit 1cb299165c
1 changed files with 6 additions and 6 deletions

View File

@ -11,7 +11,7 @@ take a look at the
## Getting Started with the LLVM System ## Getting Started with the LLVM System
Taken from https://llvm.org/docs/GettingStarted.html. Taken from [here](https://llvm.org/docs/GettingStarted.html).
### Overview ### Overview
@ -23,7 +23,7 @@ files needed to process intermediate representations and convert them into
object files. Tools include an assembler, disassembler, bitcode analyzer, and object files. Tools include an assembler, disassembler, bitcode analyzer, and
bitcode optimizer. It also contains basic regression tests. bitcode optimizer. It also contains basic regression tests.
C-like languages use the [Clang](http://clang.llvm.org/) front end. This C-like languages use the [Clang](http://clang.llvm.org/) frontend. This
component compiles C, C++, Objective-C, and Objective-C++ code into LLVM bitcode component compiles C, C++, Objective-C, and Objective-C++ code into LLVM bitcode
-- and from there into object files, using LLVM. -- and from there into object files, using LLVM.
@ -106,7 +106,7 @@ This is an example work-flow and configuration to get and build the LLVM source:
In most cases, you get the best performance if you specify the number of CPU threads you have. In most cases, you get the best performance if you specify the number of CPU threads you have.
On some Unix systems, you can specify this with ``-j$(nproc)``. On some Unix systems, you can specify this with ``-j$(nproc)``.
* For more information see [CMake](https://llvm.org/docs/CMake.html) * For more information see [CMake](https://llvm.org/docs/CMake.html).
Consult the Consult the
[Getting Started with LLVM](https://llvm.org/docs/GettingStarted.html#getting-started-with-llvm) [Getting Started with LLVM](https://llvm.org/docs/GettingStarted.html#getting-started-with-llvm)