瀏覽代碼

Merge pull request #123 from boriskaiser/patch-1

Fix localhost links
Tim Dorr 9 年之前
父節點
當前提交
e5ec84ce79
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      lessons/02-rendering-a-route/README.md

+ 3 - 3
lessons/02-rendering-a-route/README.md

@@ -25,7 +25,7 @@ render((
 ```
 ```
 
 
 Make sure your server is running with `npm start` and then visit
 Make sure your server is running with `npm start` and then visit
-http://localhost:8080
+[http://localhost:8080](http://localhost:8080)
 
 
 You should get the same screen as before, but this time with some junk
 You should get the same screen as before, but this time with some junk
 in the URL. We're using `hashHistory`--it manages the routing history
 in the URL. We're using `hashHistory`--it manages the routing history
@@ -79,8 +79,8 @@ render((
 ), document.getElementById('app'))
 ), document.getElementById('app'))
 ```
 ```
 
 
-Now visit http://localhost:8080/#/about and
-http://localhost:8080/#/repos
+Now visit [http://localhost:8080/#/about](http://localhost:8080/#/about) and
+[http://localhost:8080/#/repos](http://localhost:8080/#/repos)
 
 
 ---
 ---