From a01b8d12bd85a27e4bce9b70042cb884e76907c1 Mon Sep 17 00:00:00 2001 From: Nathan Hourt Date: Thu, 30 Mar 2017 20:20:02 -0500 Subject: [PATCH] Typo fix: askes -> asks --- doc/site/embedding/calling-c-from-wren.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/site/embedding/calling-c-from-wren.markdown b/doc/site/embedding/calling-c-from-wren.markdown index f6468980..2f83e1f4 100644 --- a/doc/site/embedding/calling-c-from-wren.markdown +++ b/doc/site/embedding/calling-c-from-wren.markdown @@ -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