Typo fixes + removing unnecessary semicolons

This commit is contained in:
Jacek Laskowski
2014-06-25 00:08:25 +02:00
parent 14176967d8
commit ebbb77e200
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -55,7 +55,7 @@ abstract class AutoPlugin extends Plugins.Basic with PluginsFunctions
/** Determines whether this AutoPlugin will be activated for this project when the `requires` clause is satisfied.
*
* When this method returns `allRequirements`, and `requires` method returns `Web && Javascript`, this plugin
* instance will be added automatically if the `Web` and `Javascript` plugins are enbled.
* instance will be added automatically if the `Web` and `Javascript` plugins are enabled.
*
* When this method returns `noTrigger`, and `requires` method returns `Web && Javascript`, this plugin
* instance will be added only if the build user enables it, but it will automatically add both `Web` and `Javascript`. */
+1 -1
View File
@@ -12,7 +12,7 @@ object PluginsTest extends Specification
"enable plugins with trigger=allRequirements AND requirements met" in {
deducePlugin(A && B, log) must contain(Q)
}
"enable transive plugins with trigger=allRequirements AND requirements met" in {
"enable transitive plugins with trigger=allRequirements AND requirements met" in {
deducePlugin(A && B, log) must contain(R)
}
"order enable plugins after required plugins" in {