rhaiscript / book

The Rhai Book.
https://rhai.rs/book
22 stars 22 forks source link

fixed a typo in control.md #3

Closed adsick closed 3 years ago

adsick commented 3 years ago

before

#![allow(unused)]
fn main() {
let bunny: SharedBunny = Rc::new(RefCell::(EnergizerBunny::new()));
}

after

#![allow(unused)]
fn main() {
let bunny: SharedBunny = Rc::new(RefCell::new(EnergizerBunny::new()));
}