File tree 4 files changed +6
-6
lines changed
4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ var getWindowPath = require('../helpers/getWindowPath');
5
5
var _onChange ;
6
6
7
7
/**
8
- * Location handler that uses `window.location.hash`.
8
+ * A Location that uses `window.location.hash`.
9
9
*/
10
10
var HashLocation = {
11
11
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ var getWindowPath = require('../helpers/getWindowPath');
5
5
var _onChange ;
6
6
7
7
/**
8
- * Location handler that uses HTML5 history.
8
+ * A Location that uses HTML5 history.
9
9
*/
10
10
var HistoryLocation = {
11
11
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ var _currentPath = '/';
5
5
var _onChange ;
6
6
7
7
/**
8
- * Location handler that does not require a DOM.
8
+ * A Location that does not require a DOM.
9
9
*/
10
10
var MemoryLocation = {
11
11
Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ var ExecutionEnvironment = require('react/lib/ExecutionEnvironment');
3
3
var getWindowPath = require ( '../helpers/getWindowPath' ) ;
4
4
5
5
/**
6
- * Location handler that uses full page refreshes. This is
7
- * used as the fallback for HistoryLocation in browsers that
8
- * do not support the HTML5 history API.
6
+ * A Location that uses full page refreshes. This is used as
7
+ * the fallback for HistoryLocation in browsers that do not
8
+ * support the HTML5 history API.
9
9
*/
10
10
var RefreshLocation = {
11
11
You can’t perform that action at this time.
0 commit comments