diff --git a/docs/Overview.md b/docs/Overview.md index eb1e15cb9..77d926b9a 100644 --- a/docs/Overview.md +++ b/docs/Overview.md @@ -24,8 +24,8 @@ N1 is available for Mac, Windows, and Linux. Download the latest build for your Packages lie at the heart of N1. Each part of the core experience is a separate package that uses the Nylas Package API to add functionality to the client. Learn more about packages and create your first package.
diff --git a/docs/WritingSpecs.md b/docs/WritingSpecs.md index 1562ade00..b708ff0f6 100644 --- a/docs/WritingSpecs.md +++ b/docs/WritingSpecs.md @@ -11,7 +11,7 @@ This documentation describes using [Jasmine 1.3](http://jasmine.github.io/1.3/in ### Running Specs -You can run your package specs from `Developer > Run Package Specs...`. Once you've opened the spec window, you can see output and re-run your specs by clicking `Reload Specs`. +You can run your package specs from `Developer > Run Plugin Specs...`. Once you've opened the spec window, you can see output and re-run your specs by clicking `Reload Specs`. ### Writing Specs diff --git a/docs/index.md b/docs/index.md index 8fdd870a3..e31dc3dd4 100644 --- a/docs/index.md +++ b/docs/index.md @@ -79,8 +79,8 @@ blockquote p {Packages lie at the heart of N1. The thread list, composer and other core parts of the app are packages bundled with the app, and you have access to the same set of APIs. From the Developer Menu, choose Create a Package... and name your new package.
+Plugins lie at the heart of N1. The thread list, composer and other core parts of the app are plugins bundled with the app, and you have access to the same set of APIs. From the Developer Menu, choose Create a Plugin... and name your new plugin.
Your new package comes with some basic code that adds a section to the message sidebar, and it's already enabled! View a message to see it in action. If you make changes to the source, choose View > Refresh to see your changes in N1.
+Your new plugin comes with some basic code that adds a section to the message sidebar, and it's already enabled! View a message to see it in action. If you make changes to the source, choose View > Refresh to see your changes in N1.
Nylas is built on the modern web - packages are written in CoffeeScript or JavaScript. Packages are a lot like node modules, with their own source, assets, and tests. Check out yours in ~/.nylas/dev/packages.
+Nylas is built on the modern web - plugins are written in CoffeeScript or JavaScript. Plugins are a lot like node modules, with their own source, assets, and tests. Check out yours in ~/.nylas/dev/packages.
In N1, select Developer > Run Package Specs... from the menu to run your package's new specs. Nylas and its packages use the Jasmine testing framework.
+In N1, select Developer > Run Plugin Specs... from the menu to run your plugin's new specs. Nylas and its plugins use the Jasmine testing framework.