Docs: Deleted redundant word in scripting

This commit is contained in:
Clinton Gormley 2017-02-09 22:02:02 +01:00
parent 990918a655
commit d43417ef47
1 changed files with 1 additions and 1 deletions

View File

@ -356,7 +356,7 @@ documents that they have to check.
[[modules-scripting-painless-dispatch]]
=== How painless dispatches functions
Painless uses receiver, name, and https://en.wikipedia.org/wiki/Arity[arity] to
Painless uses receiver, name, and https://en.wikipedia.org/wiki/Arity[arity]
for method dispatch. For example, `s.foo(a, b)` is resolved by first getting
the class of `s` and then looking up the method `foo` with two parameters. This
is different from Groovy which uses the