From f9a09695f171eab2386dcfcf599b38d5b3e1272a Mon Sep 17 00:00:00 2001 From: Kohei TAKATA Date: Thu, 11 Feb 2016 22:11:39 +0900 Subject: [PATCH 1/3] Fix typo --- lessons/12-navigating.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lessons/12-navigating.md b/lessons/12-navigating.md index f960c907..54591d49 100644 --- a/lessons/12-navigating.md +++ b/lessons/12-navigating.md @@ -4,7 +4,7 @@ While most navigation happens with `Link`, you can programatically navigate around an application in response to form submissions, button clicks, etc. -Let's make a little form in `Repos` that progromatically navigates. +Let's make a little form in `Repos` that programatically navigates. ```js // modules/Repos.js From e01fbc9406723a20b3fbabca554ddb0b74993bbd Mon Sep 17 00:00:00 2001 From: Ryan Florence Date: Fri, 4 Mar 2016 08:25:29 -0800 Subject: [PATCH 2/3] Update index.html --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index d3334c9e..47ed767b 100644 --- a/index.html +++ b/index.html @@ -1,4 +1,4 @@ - + My First React Router App From cae21c6d3834c5c1c6e56326bd87211de8ac1d94 Mon Sep 17 00:00:00 2001 From: yairraz Date: Mon, 7 Mar 2016 23:15:56 +0200 Subject: [PATCH 3/3] wrong option name --- lessons/10-clean-urls.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lessons/10-clean-urls.md b/lessons/10-clean-urls.md index f88ebe75..5e82b522 100644 --- a/lessons/10-clean-urls.md +++ b/lessons/10-clean-urls.md @@ -40,7 +40,7 @@ because your app, in the browser, is manipulating the url. Our current server doesn't know how to handle the URL. The Webpack Dev Server has an option to enable this. Open up -`package.json` and add `--history-fallback-api`. +`package.json` and add `--history-api-fallback`. ```json "start": "webpack-dev-server --inline --content-base . --history-api-fallback"