diff options
author | William Robinson <wbarobinson@gmail.com> | 2018-04-17 13:30:35 -0400 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2018-08-02 21:27:16 +0800 |
commit | 3be70ba400d0d4c94ca0142559978c104ea97df4 (patch) | |
tree | 86362048379f854d309e29eaf609eaf51868d07d /doc/build-osx.md | |
parent | 9c4324d866db2892b1f99b0415cfa7f9195fc777 (diff) |
trivial: Fixed typos and cleaned up language
Diffstat (limited to 'doc/build-osx.md')
-rw-r--r-- | doc/build-osx.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/build-osx.md b/doc/build-osx.md index 486a505b60..448918e8cb 100644 --- a/doc/build-osx.md +++ b/doc/build-osx.md @@ -41,14 +41,14 @@ from the root of the repository. Build Bitcoin Core ------------------------ -1. Clone the bitcoin source code and cd into `bitcoin` +1. Clone the Bitcoin Core source code and cd into `bitcoin` git clone https://github.com/bitcoin/bitcoin cd bitcoin -2. Build bitcoin-core: +2. Build Bitcoin Core: - Configure and build the headless bitcoin binaries as well as the GUI (if Qt is found). + Configure and build the headless Bitcoin Core binaries as well as the GUI (if Qt is found). You can disable the GUI build by passing `--without-gui` to configure. @@ -69,7 +69,7 @@ Running Bitcoin Core is now available at `./src/bitcoind` -Before running, it's recommended you create an RPC configuration file. +Before running, it's recommended that you create an RPC configuration file. echo -e "rpcuser=bitcoinrpc\nrpcpassword=$(xxd -l 16 -p /dev/urandom)" > "/Users/${USER}/Library/Application Support/Bitcoin/bitcoin.conf" |