Skip to content

Commit d4fb492

Browse files
ammbradanthe1st
authored andcommitted
Update app/pages/learn/01_tutorial/04_mastering-the-api/02_invoke/00_methodhandle.md
Co-authored-by: dan1st <daniel@wwwmaster.at>
1 parent 6a589d8 commit d4fb492

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/pages/learn/01_tutorial/04_mastering-the-api/02_invoke/00_methodhandle.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ MethodType methodType = MethodType.methodType(int.class /* the method returns in
8484

8585
Having the `Lookup` and the `MethodType` instances, we can look up the method handle. For instance methods, we should
8686
use [`Lookup.findVirtual`](javadoc:MethodHandles.Lookup.findVirtual(Class,String,MethodType)), and for static methods
87-
[`Lookup.findStatic`](javadoc:MethodHandles.Lookup.findStatic(Class,String,MethodType)). Both these methods accept the
87+
[`Lookup.findStatic`](javadoc:MethodHandles.Lookup.findStatic(Class,String,MethodType)). Both of these methods accept the
8888
following arguments: a `Class` where the method is located, a method name represented as a `String`, and a `MethodType`
8989
instance.
9090

0 commit comments

Comments
 (0)