diff --git a/docs/internal.md b/docs/internal.md index ab823d5..6f0bb37 100644 --- a/docs/internal.md +++ b/docs/internal.md @@ -14,10 +14,10 @@ and other magic methods. Each proxy property access is mirrored on the other sid Proxy objects on both sides of the bridge are GC tracked. In JavaScript, all python Proxy objects are registered to a FinalizationRegistry. In Python, `__del__` is used to track the Proxy object's -destruction. When the proxy object is destoryed on one side of the bridge, its refrence is removed +destruction. When the proxy object is destoryed on one side of the bridge, its reference is removed from the other side of the bridge. This means you don't have to deal with memory management. ### On the JavaScript side The magic behind this is the usage of Proxy chains which permits call stack build up, until a .then call for property access or a function call is done. Afterwards, the callstack is sent -and executed in Python. \ No newline at end of file +and executed in Python.