Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ public abstract class WaiterAcceptor<Output> {
/**
* 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) {
Expand All @@ -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) {
Expand Down