blueloveTH hace 2 años
padre
commit
89f18c1b2a
Se han modificado 1 ficheros con 7 adiciones y 1 borrados
  1. 7 1
      docs/quick-start/bind.md

+ 7 - 1
docs/quick-start/bind.md

@@ -108,4 +108,10 @@ struct Point {
     }));
     }));
   }
   }
 };
 };
-```
+```
+
+### 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.