From 77340f6aa85233ed4546e93b3acc0aceba72c50c Mon Sep 17 00:00:00 2001 From: Guilherme Macedo Date: Sun, 15 Nov 2020 23:55:57 +0100 Subject: [PATCH] Update setting-up-your-development-environment-to-create-a-github-app.md Fix two small typos. --- ...-up-your-development-environment-to-create-a-github-app.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/developers/apps/setting-up-your-development-environment-to-create-a-github-app.md b/content/developers/apps/setting-up-your-development-environment-to-create-a-github-app.md index 56485e1550f0..bef115d597f1 100644 --- a/content/developers/apps/setting-up-your-development-environment-to-create-a-github-app.md +++ b/content/developers/apps/setting-up-your-development-environment-to-create-a-github-app.md @@ -220,7 +220,7 @@ end #### Define a route handler -An empty route is included in the template code. This code handles all `POST` requests to the `/event_handler` route. You'll won't write this event handler in this quickstart, but see the other [quickstart guides](/apps/quickstart-guides/) for examples of how to extend this template app. +An empty route is included in the template code. This code handles all `POST` requests to the `/event_handler` route. You won't write this event handler in this quickstart, but see the other [quickstart guides](/apps/quickstart-guides/) for examples of how to extend this template app. ``` ruby post '/event_handler' do @@ -422,7 +422,7 @@ Here are a few common problems and some suggested solutions. If you run into any **A:** You may not be running the Smee client, or you may not have the correct Smee domain in your GitHub App settings. First check to make sure the Smee client is running in a Terminal tab. If that's not the problem, visit your [app settings page](https://github.com/settings/apps) and check the fields shown in "[Step 2. Register a new GitHub App](#step-2-register-a-new-github-app)." Make sure the domain in those fields matches the domain you used in your `smee -u ` command in "[Step 1. Start a new Smee channel](#step-1-start-a-new-smee-channel)." -* **Q:** I'm getting seeing an `Octokit::NotFound` 404 error in my debug output: +* **Q:** I'm getting an `Octokit::NotFound` 404 error in my debug output: ``` 2018-12-06 15:00:56 - Octokit::NotFound - POST https://api.github.com/app/installations/500991/access_tokens: 404 - Not Found // See: /v3/apps/#create-a-new-installation-token: ```