Skip to content

Commit

Permalink
Edit doc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mjackson committed Aug 18, 2014
1 parent 8424231 commit ccf4149
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion modules/locations/HashLocation.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ var getWindowPath = require('../helpers/getWindowPath');
var _onChange;

/**
* Location handler that uses `window.location.hash`.
* A Location that uses `window.location.hash`.
*/
var HashLocation = {

Expand Down
2 changes: 1 addition & 1 deletion modules/locations/HistoryLocation.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ var getWindowPath = require('../helpers/getWindowPath');
var _onChange;

/**
* Location handler that uses HTML5 history.
* A Location that uses HTML5 history.
*/
var HistoryLocation = {

Expand Down
2 changes: 1 addition & 1 deletion modules/locations/MemoryLocation.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ var _currentPath = '/';
var _onChange;

/**
* Location handler that does not require a DOM.
* A Location that does not require a DOM.
*/
var MemoryLocation = {

Expand Down
6 changes: 3 additions & 3 deletions modules/locations/RefreshLocation.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ var ExecutionEnvironment = require('react/lib/ExecutionEnvironment');
var getWindowPath = require('../helpers/getWindowPath');

/**
* Location handler that uses full page refreshes. This is
* used as the fallback for HistoryLocation in browsers that
* do not support the HTML5 history API.
* A Location that uses full page refreshes. This is used as
* the fallback for HistoryLocation in browsers that do not
* support the HTML5 history API.
*/
var RefreshLocation = {

Expand Down

0 comments on commit ccf4149

Please sign in to comment.