fix typos
diff --git a/docs/api-details/api.md b/docs/api-details/api.md
index dc15a4b..a4d7266 100644
--- a/docs/api-details/api.md
+++ b/docs/api-details/api.md
@@ -7,12 +7,12 @@
 Open-api specifications are provided for the core "vanilla" Milagro HTTP REST services and for both the shipped plugins: Bitcoin Address and Safeguard Secret
 
 * [Standard API](https://raw.githubusercontent.com/apache/incubator-milagro-dta/develop/open-api.yaml) Here it is in a [Swagger UI](/swagger/index.html)
-* [Bitcoin Plugin API](https://github.com/apache/incubator-milagro-dta/blob/develop/pkg/bitcoinplugin/open-api.yaml)
+* [Bitcoin Plugin API](https://raw.githubusercontent.com/apache/incubator-milagro-dta/develop/pkg/bitcoinplugin/open-api.yaml)
 * [Safeguard Secret API](https://raw.githubusercontent.com/apache/incubator-milagro-dta/develop/pkg/safeguardsecret/safeguardsecret-api.yaml)
 
 ## Testing The API
 
-(This assumes that your local DTA is running on port 8888 as described in the [quick start guide](/docs/dta-details/quickstart)
+(This assumes that your local DTA is running on port 5558 as described in the [quick start guide](/docs/dta-details/quickstart)
 
 Instructions for installing Swagger UI can be found [here](https://github.com/swagger-api/swagger-ui/blob/master/docs/usage/installation.md)
 
diff --git a/docs/dta-details/quickstart.md b/docs/dta-details/quickstart.md
index cc3581e..5a8feb5 100644
--- a/docs/dta-details/quickstart.md
+++ b/docs/dta-details/quickstart.md
@@ -5,7 +5,7 @@
 ---
 
 ## Docker
-The easiest way to see a D-TA in action is to run it in a Docker container. The default settings will run a single D-TA that acts as Principal, Master Fiduciary and Beneficiary.
+The easiest way to see a D-TA in action is to run it in a Docker container. The default settings will run a single D-TA that acts as Principal, Master Fiduciary and Beneficiary. The default settings include an embeded IPFS node connected to a Public IPFS network. This will get you up and running quickly but will turn your D-TA into a public IPFS relay. **Not recommended for production use!**
 
 ```
 git clone https://github.com/apache/incubator-milagro-dta.git
@@ -36,7 +36,7 @@
 
 ## Plugins
 
-Milagro D-TA comes with two aditional plugins out-of-the box, which are ijntended to demonstrate it can be extended.
+Milagro D-TA comes with two aditional plugins out-of-the box, which are intended to demonstrate how it can be extended.
 
 **To Run Safeguard Secret**
 
@@ -48,7 +48,7 @@
 
 **To Run Bit Coin Wallet**
 
-Bitcon Wallet uses the public key to create a Bitcoin address. If you want to spend your bitcoins you can get the secret key from the Master Fiduciary
+Bitcon Wallet uses the public key to create a Bitcoin address. When you want to spend your bitcoins you can get the secret key from the Master Fiduciary
 ```
 docker run -it -p 5558:5556 milagrodta -service bitcoinwallet
 ```
@@ -56,7 +56,6 @@
 You can confirm that the plugins have loaded by hitting [http://localhost:5558/v1/status](http://localhost:5558/v1/status)
 
 
-
 ## Hitting the API
 
 The details of the API can be  [seen here...](/swagger/index.html)