From 10ceb344266b33099b68aa0d7fbafbdb8b748e2b Mon Sep 17 00:00:00 2001 From: Ben Ogle Date: Tue, 9 Sep 2014 15:43:12 -0700 Subject: [PATCH] Fix docs --- src/theme-manager.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/theme-manager.coffee b/src/theme-manager.coffee index ee48d555f..e4ae4c626 100644 --- a/src/theme-manager.coffee +++ b/src/theme-manager.coffee @@ -58,14 +58,14 @@ class ThemeManager # Essential: Invoke `callback` when a stylesheet has been added to the dom. # # * `callback` {Function} - # * `stylesheet` {HTMLElement} the style node + # * `stylesheet` {StyleSheet} the style node onDidAddStylesheet: (callback) -> @emitter.on 'did-add-stylesheet', callback # Essential: Invoke `callback` when a stylesheet has been removed from the dom. # # * `callback` {Function} - # * `stylesheet` {HTMLElement} the style node + # * `stylesheet` {StyleSheet} the style node onDidRemoveStylesheet: (callback) -> @emitter.on 'did-remove-stylesheet', callback