1
0
forked from Mirror/wren

docs: fix simple typo, similiar -> similar (#843)

There is a small typo in src/vm/wren_value.h.

Should read `similar` rather than `similiar`.
This commit is contained in:
Tim Gates
2020-12-04 03:19:19 +11:00
committed by GitHub
parent 556eeac86e
commit 473392a56a

View File

@ -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`.