Fix typo in thrown exception in IndicesAliasesRequest (#27025)

There is a typo in the exception thrown in `IndicesAliasesRequest`. This PR corrects the spelling and removes extraneous word.
This commit is contained in:
Stephen Yeargin 2017-10-18 08:54:16 -05:00 committed by Nik Everett
parent 71f5e2ce6b
commit 8a05e5b92c
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ public class IndicesAliasesRequest extends AcknowledgedRequest<IndicesAliasesReq
if (action == null) {
action = (AliasActions) o;
} else {
throw new IllegalArgumentException("Too many operations declared in on opeation entry");
throw new IllegalArgumentException("Too many operations declared on operation entry");
}
}
}