diff --git a/modules/locations/HashLocation.js b/modules/locations/HashLocation.js index 4fb77ac09e..2c4462217c 100644 --- a/modules/locations/HashLocation.js +++ b/modules/locations/HashLocation.js @@ -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 = { diff --git a/modules/locations/HistoryLocation.js b/modules/locations/HistoryLocation.js index 3087d933c4..3fda5da0f5 100644 --- a/modules/locations/HistoryLocation.js +++ b/modules/locations/HistoryLocation.js @@ -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 = { diff --git a/modules/locations/MemoryLocation.js b/modules/locations/MemoryLocation.js index 38b9604a17..1a3a43b906 100644 --- a/modules/locations/MemoryLocation.js +++ b/modules/locations/MemoryLocation.js @@ -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 = { diff --git a/modules/locations/RefreshLocation.js b/modules/locations/RefreshLocation.js index 4cff9075b2..9aae6db39b 100644 --- a/modules/locations/RefreshLocation.js +++ b/modules/locations/RefreshLocation.js @@ -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 = {