ogghostjelly();
ogghostjelly();
It's such a small fix that it might be easier to just fix it yourself than try to merge a PR but here you go. The method now returns a...
The `VDomGuard::get_mut_ref` method seems like it was suppose to return a mutable reference but instead it returns an immutable one. ``` impl VDomGuard { // this should return `&mut VDom`...
Circular references using `Rc` in Rust causes memory leaks! An environment can reference a function and a function can reference an environment, creating a circular reference. Possible fixes for the...