Linted markdown

Roger 2016-12-19 02:15:21 -05:00
parent ee9bfb9198
commit dd6e2fb855
1 changed files with 4 additions and 2 deletions

@ -7,7 +7,8 @@ You will need to install "Command Line Tools for Xcode". Installing Xcode itself
## Checkout and Compile Dolphin
To checkout Dolphin's source:
To checkout Dolphin's source:
```bash
git clone https://github.com/dolphin-emu/dolphin ~/dolphin-emu
cd ~/dolphin-emu
@ -16,6 +17,7 @@ cd ~/dolphin-emu
To build with CMake (optionally verbose): Download and install [CMake](https://cmake.org/download/) if you don't have it.
Then:
```bash
mkdir -p build
cd build
@ -53,4 +55,4 @@ All you need to do to update to the latest Dolphin revision is the following:
cd ~/dolphin-emu/build
git pull
make && open Binaries/*
```
```