From 473392a56aedd4028386e88d4947d5326d1d7aa9 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Fri, 4 Dec 2020 03:19:19 +1100 Subject: [PATCH] docs: fix simple typo, similiar -> similar (#843) There is a small typo in src/vm/wren_value.h. Should read `similar` rather than `similiar`. --- src/vm/wren_value.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vm/wren_value.h b/src/vm/wren_value.h index 40a9e49f..ae50b551 100644 --- a/src/vm/wren_value.h +++ b/src/vm/wren_value.h @@ -195,7 +195,7 @@ typedef struct sObjUpvalue // The type of a primitive function. // -// Primitives are similiar to foreign functions, but have more direct access to +// Primitives are similar to foreign functions, but have more direct access to // VM internals. It is passed the arguments in [args]. If it returns a value, // it places it in `args[0]` and returns `true`. If it causes a runtime error // or modifies the running fiber, it returns `false`.