From 4feb7d3dc8d24092f00a9f8fa57787b84ce52ced Mon Sep 17 00:00:00 2001 From: Mark Harrah Date: Sat, 8 Feb 2014 10:23:31 -0500 Subject: [PATCH] Fix typos in AutoPlugin API docs. --- main/src/main/scala/sbt/AutoPlugin.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/src/main/scala/sbt/AutoPlugin.scala b/main/src/main/scala/sbt/AutoPlugin.scala index 7521cd8c9..3f217bb6b 100644 --- a/main/src/main/scala/sbt/AutoPlugin.scala +++ b/main/src/main/scala/sbt/AutoPlugin.scala @@ -12,7 +12,7 @@ trait AutoImport An AutoPlugin defines a group of settings and the conditions that the settings are automatically added to a build (called "activation"). The `select` method defines the conditions, `provides` defines an identifier for the AutoPlugin, - and the a method like `projectSettings` defines the settings to add. + and a method like `projectSettings` defines the settings to add. Steps for plugin authors: 1. Determine the natures that, when present (or absent), activate the AutoPlugin. @@ -42,7 +42,7 @@ will activate `MyPlugin` defined above and have its settings automatically added .natures( Web && Javascript && !MyStuff) -then the `MyPlugin` settings (and anything that activates when `MyStuff` is activated) will not be added. +then the `MyPlugin` settings (and anything that activates only when `MyStuff` is activated) will not be added. */ abstract class AutoPlugin {