diff --git a/src/app/repository-status-task.coffee b/src/app/repository-status-task.coffee index 0e5f746a5..358d9e9fb 100644 --- a/src/app/repository-status-task.coffee +++ b/src/app/repository-status-task.coffee @@ -1,8 +1,10 @@ Task = require 'task' _ = require 'underscore' +# Internal: module.exports = class RepositoryStatusTask extends Task + constructor: (@repo) -> super('repository-status-handler') diff --git a/src/app/undo-manager.coffee b/src/app/undo-manager.coffee index 624567cf5..16ee55aa2 100644 --- a/src/app/undo-manager.coffee +++ b/src/app/undo-manager.coffee @@ -1,8 +1,8 @@ _ = require 'underscore' +# Internal: The object in charge of managing redo and undo operations. module.exports = -# Internal: The object in charge of managing redo and undo operations. class UndoManager undoHistory: null redoHistory: null @@ -80,4 +80,4 @@ class UndoManager batch.newSelectionRanges catch e @clear() - throw e + throw e \ No newline at end of file diff --git a/src/app/window.coffee b/src/app/window.coffee index 26881b793..508cf0dda 100644 --- a/src/app/window.coffee +++ b/src/app/window.coffee @@ -9,6 +9,7 @@ require 'space-pen-extensions' deserializers = {} deferredDeserializers = {} + ### # Internal # ###