From e9896544c895b5d6d85529cd80c3ac0cba02539e Mon Sep 17 00:00:00 2001 From: Nathan Hourt Date: Tue, 4 Apr 2017 15:23:16 -0500 Subject: [PATCH] Typo fix: is only be -> will only be --- doc/site/embedding/configuring-the-vm.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/site/embedding/configuring-the-vm.markdown b/doc/site/embedding/configuring-the-vm.markdown index c7709b80..1d737756 100644 --- a/doc/site/embedding/configuring-the-vm.markdown +++ b/doc/site/embedding/configuring-the-vm.markdown @@ -51,7 +51,7 @@ host should return the source code for that module. Memory for the source should be allocated using the same allocator that the VM uses for other allocation (see below). Wren will take ownership of the returned string and free it later. -The module loader is only be called once for any given module name. Wren caches +The module loader will only be called once for any given module name. Wren caches the result internally so subsequent imports of the same module use the previously loaded code.