You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by he...@apache.org on 2015/06/10 20:07:12 UTC

[2/3] incubator-brooklyn git commit: fix spelling

fix spelling


Project: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/commit/6498982b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/tree/6498982b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/diff/6498982b

Branch: refs/heads/master
Commit: 6498982bea80d2c3355c467bb66c418ef4b160d0
Parents: c1a5df7
Author: Alex Heneveld <al...@cloudsoftcorp.com>
Authored: Wed Jun 10 19:06:25 2015 +0100
Committer: Alex Heneveld <al...@cloudsoftcorp.com>
Committed: Wed Jun 10 19:06:25 2015 +0100

----------------------------------------------------------------------
 .../main/java/brooklyn/policy/autoscaling/AutoScalerPolicy.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/6498982b/policy/src/main/java/brooklyn/policy/autoscaling/AutoScalerPolicy.java
----------------------------------------------------------------------
diff --git a/policy/src/main/java/brooklyn/policy/autoscaling/AutoScalerPolicy.java b/policy/src/main/java/brooklyn/policy/autoscaling/AutoScalerPolicy.java
index bbf1249..52bb943 100644
--- a/policy/src/main/java/brooklyn/policy/autoscaling/AutoScalerPolicy.java
+++ b/policy/src/main/java/brooklyn/policy/autoscaling/AutoScalerPolicy.java
@@ -308,7 +308,7 @@ public class AutoScalerPolicy extends AbstractPolicy {
     @SetFromFlag("resizeUpIterationIncrement")
     public static final ConfigKey<Integer> RESIZE_UP_ITERATION_INCREMENT = BasicConfigKey.builder(Integer.class)
             .name("autoscaler.resizeUpIterationIncrement")
-            .description("Batch size for resizing up; the size will be increased by a mulitiple of this value")
+            .description("Batch size for resizing up; the size will be increased by a multiple of this value")
             .defaultValue(1)
             .reconfigurable(true)
             .build();
@@ -322,7 +322,7 @@ public class AutoScalerPolicy extends AbstractPolicy {
     @SetFromFlag("resizeDownIterationIncrement")
     public static final ConfigKey<Integer> RESIZE_DOWN_ITERATION_INCREMENT = BasicConfigKey.builder(Integer.class)
             .name("autoscaler.resizeDownIterationIncrement")
-            .description("Batch size for resizing down; the size will be decreased by a mulitiple of this value")
+            .description("Batch size for resizing down; the size will be decreased by a multiple of this value")
             .defaultValue(1)
             .reconfigurable(true)
             .build();