From 1b7ab37f019b6bd3b9c8d27873150b0bd31ee6d3 Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Wed, 25 Oct 2023 10:27:21 +0800 Subject: [PATCH] fix a doc issue --- docs/bindings.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/bindings.md b/docs/bindings.md index 4b5d2b15..5c8c8176 100644 --- a/docs/bindings.md +++ b/docs/bindings.md @@ -158,7 +158,7 @@ struct wrapped__Point{ // __init__ method vm->bind(type, "__init__(self, x, y)", [](VM* vm, ArgsView args){ - wrapped__Point& self = _py_cast(vm, args[0]); + wrapped__Point& self = _py_cast(vm, args[0]); self.value.x = py_cast(vm, args[1]); self.value.y = py_cast(vm, args[2]); return vm->None;