From 512500be1763c70b33af32c135ca1d368e1d4da1 Mon Sep 17 00:00:00 2001 From: Patricio Mac Adden Date: Fri, 17 Apr 2015 23:13:36 -0300 Subject: [PATCH] fix typo: orde => order --- src/include/wren.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/wren.h b/src/include/wren.h index c97fe367..0fbc7362 100644 --- a/src/include/wren.h +++ b/src/include/wren.h @@ -154,7 +154,7 @@ WrenMethod* wrenGetMethod(WrenVM* vm, const char* module, const char* variable, // Calls [method], passing in a series of arguments whose types must match the // specifed [argTypes]. This is a string where each character identifies the -// type of a single argument, in orde. The allowed types are: +// type of a single argument, in order. The allowed types are: // // - "b" - A C `int` converted to a Wren Bool. // - "d" - A C `double` converted to a Wren Num.