Skip to content

Commit

Permalink
observe typo
Browse files Browse the repository at this point in the history
(cherry picked from commit 1d0c465)
  • Loading branch information
Kelly Selden authored and locks committed Mar 8, 2017
1 parent b57af3b commit db7a80d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/ember-runtime/lib/mixins/observable.js
Original file line number Diff line number Diff line change
Expand Up @@ -368,9 +368,9 @@ export default Mixin.create({
any of these values, to write an observer that has no parameters at all.
@method addObserver
@param {String} key The key to observer
@param {String} key The key to observe
@param {Object} target The target object to invoke
@param {String|Function} method The method to invoke.
@param {String|Function} method The method to invoke
@public
*/
addObserver(key, target, method) {
Expand All @@ -383,9 +383,9 @@ export default Mixin.create({
target will no longer receive notifications.
@method removeObserver
@param {String} key The key to observer
@param {String} key The key to observe
@param {Object} target The target object to invoke
@param {String|Function} method The method to invoke.
@param {String|Function} method The method to invoke
@public
*/
removeObserver(key, target, method) {
Expand Down

0 comments on commit db7a80d

Please sign in to comment.