Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit dce076e

Browse files
committed
🎨 fix linting errors
1 parent d224f45 commit dce076e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/image-editor.coffee

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class ImageEditor
5151
#
5252
# Returns an {Array} of {ImageEditor}s.
5353
getImageEditors: ->
54-
atom.workspace.getPaneItems().filter (item) -> item instanceof ImageEditor
54+
atom.workspace.getPaneItems().filter (item) -> item instanceof ImageEditor
5555

5656
# Essential: Get the {ImageEditor}s title for display in other parts
5757
# of the UI such as tabs.
@@ -60,7 +60,7 @@ class ImageEditor
6060
#
6161
# Returns a {String}.
6262
getTitle: ->
63-
@getFileName() ? 'untitled'
63+
@getFileName() ? 'untitled'
6464

6565
# Essential: Get unique title for display in other parts of the UI, such as
6666
# the window title.

0 commit comments

Comments
 (0)