Skip to content

Commit ccf4149

Browse files
committed
Edit doc comments
1 parent 8424231 commit ccf4149

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

modules/locations/HashLocation.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ var getWindowPath = require('../helpers/getWindowPath');
55
var _onChange;
66

77
/**
8-
* Location handler that uses `window.location.hash`.
8+
* A Location that uses `window.location.hash`.
99
*/
1010
var HashLocation = {
1111

modules/locations/HistoryLocation.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ var getWindowPath = require('../helpers/getWindowPath');
55
var _onChange;
66

77
/**
8-
* Location handler that uses HTML5 history.
8+
* A Location that uses HTML5 history.
99
*/
1010
var HistoryLocation = {
1111

modules/locations/MemoryLocation.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ var _currentPath = '/';
55
var _onChange;
66

77
/**
8-
* Location handler that does not require a DOM.
8+
* A Location that does not require a DOM.
99
*/
1010
var MemoryLocation = {
1111

modules/locations/RefreshLocation.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ var ExecutionEnvironment = require('react/lib/ExecutionEnvironment');
33
var getWindowPath = require('../helpers/getWindowPath');
44

55
/**
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.
99
*/
1010
var RefreshLocation = {
1111

0 commit comments

Comments
 (0)