From 7d3abda86fe702e5aee013a60cce8539ba9d7f35 Mon Sep 17 00:00:00 2001 From: Corey Johnson Date: Wed, 30 Apr 2014 16:38:44 -0700 Subject: [PATCH] Fix Workspace::openLicense --- src/workspace.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/workspace.coffee b/src/workspace.coffee index 6f5975e1e..b662143c4 100644 --- a/src/workspace.coffee +++ b/src/workspace.coffee @@ -114,7 +114,7 @@ class Workspace extends Model # Public: Open Atom's license in the active pane. openLicense: -> - @open(join(atom.getLoadSettings().resourcePath, 'LICENSE')) + @open(join(atom.getLoadSettings().resourcePath, 'LICENSE.md')) # Synchronously open the given URI in the active pane. **Only use this method # in specs. Calling this in production code will block the UI thread and