Typo fix: askes -> asks

This commit is contained in:
Nathan Hourt
2017-03-30 20:20:02 -05:00
committed by GitHub
parent 8f14bfb4b8
commit a01b8d12bd

View File

@ -33,7 +33,7 @@ implemented in C. Both static and instance methods can be foreign.
When you call a foreign method, Wren needs to figure out which C function to
execute. This process is called *binding*. Binding is performed on-demand by the
VM. When a class that declares a foreign method is executed -- when the `class`
statement itself is evaluated -- the VM askes the host application for the C
statement itself is evaluated -- the VM asks the host application for the C
function that should be used for the foreign method.
It does this through the `bindForeignMethodFn` callback you give it when you