@@ -14,9 +14,9 @@ the moment your code lands on `master`.
1414This guide will use that API to demonstrate a setup that you can use.
1515In our scenario, we will:
1616
17- * Merge aPull Request
18- * When the CI is finished, we'll set thePull Request 's status accordingly.
19- * When thePull Request is merged, we'll run our deployment to our server.
17+ * Merge apull request
18+ * When the CI is finished, we'll set thepull request 's status accordingly.
19+ * When thepull request is merged, we'll run our deployment to our server.
2020
2121Our CI system and host server will be figments of our imagination. They could be
2222Heroku, Amazon, or something else entirely. The crux of this guide will be setting up
@@ -50,7 +50,7 @@ Start this server up. By default, Sinatra starts on port `4567`, so you'll want
5050to configure ngrok to start listening for that, too.
5151
5252In order for this server to work, we'll need to set a repository up with a webhook.
53- The webhook should be configured to fire whenever aPull Request is created, or merged.
53+ The webhook should be configured to fire whenever apull request is created, or merged.
5454Go ahead and create a repository you're comfortable playing around in. Might we
5555suggest[ @octocat 's Spoon/Knife repository] ( https://github.com/octocat/Spoon-Knife ) ?
5656After that, you'll create a new webhook in your repository, feeding it the URL
@@ -67,7 +67,7 @@ Great! Click on **Let me select individual events.**, and select the following:
6767* Pull Request
6868
6969These are the events {{ site.data.variables.product.product_name }} will send to our server whenever the relevant action
70- occurs. We'll configure our server to* just* handle whenPull Requests are merged
70+ occurs. We'll configure our server to* just* handle whenpull requests are merged
7171right now:
7272
7373``` ruby