diff --git a/aws-java-sdk-core/src/main/java/com/amazonaws/waiters/WaiterAcceptor.java b/aws-java-sdk-core/src/main/java/com/amazonaws/waiters/WaiterAcceptor.java index 0216174db8e2..3e9bdedff6f0 100644 --- a/aws-java-sdk-core/src/main/java/com/amazonaws/waiters/WaiterAcceptor.java +++ b/aws-java-sdk-core/src/main/java/com/amazonaws/waiters/WaiterAcceptor.java @@ -24,11 +24,11 @@ public abstract class WaiterAcceptor { /** * Default method definition that matches the response * state with the expected state defined by the acceptor. - * Overriden by each acceptor definition of matches. + * Overridden by each acceptor definition of matches. * * @param output Response got by the execution of the operation * @return False by default. - * When overriden, returns True if it matches, False + * When overridden, returns True if it matches, False * otherwise */ public boolean matches(Output output) { @@ -38,11 +38,11 @@ public boolean matches(Output output) { /** * Default method definition that matches the exception * with the expected state defined by the acceptor. - * Overriden by each acceptor definition of matches. + * Overridden by each acceptor definition of matches. * * @param output Exception thrown by the execution of the operation * @return False by default. - * When overriden, returns True if it matches, False + * When overridden, returns True if it matches, False * otherwise */ public boolean matches(AmazonServiceException output) {