소스 검색

Docs: Tiny typo to Painless dispatch justification (#24588)

Chris Ivens 8 년 전
부모
커밋
d447b79e16
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      docs/reference/modules/scripting/painless.asciidoc

+ 1 - 1
docs/reference/modules/scripting/painless.asciidoc

@@ -374,7 +374,7 @@ has <<painless-api-reference-Matcher-group-1, `group(int)`>> and
 We have a few justifications for this different way of dispatching methods:
 
 1. It makes operating on `def` types simpler and, presumably, faster. Using
-receiver, name, and arity means when Painless sees a call on a `def` objects it
+receiver, name, and arity means when Painless sees a call on a `def` object it
 can dispatch the appropriate method without having to do expensive comparisons
 of the types of the parameters. The same is true for invocations with `def`
 typed parameters.