diff --git a/docs/quick-start/bind.md b/docs/quick-start/bind.md index 366b41d3..e51d7b01 100644 --- a/docs/quick-start/bind.md +++ b/docs/quick-start/bind.md @@ -108,4 +108,10 @@ struct Point { })); } }; -``` \ No newline at end of file +``` + +### Old style binding + +You may see somewhere in the code that `vm->bind_method<>` or `vm->bind_func<>` is used. +They are old style binding functions and are deprecated. +You should use `vm->bind` instead. \ No newline at end of file