remove superfluous mut

This commit is contained in:
Aidan Hahn 2021-10-17 23:11:31 -07:00
parent 0c2faac9ce
commit 8445a51d80
No known key found for this signature in database
GPG key ID: 327711E983899316

View file

@ -42,7 +42,7 @@ fn main() {
let _ = rl.load_history(&hist);
}
let mut vt = Rc::new(RefCell::new(VTable::new()));
let vt = Rc::new(RefCell::new(VTable::new()));
// if we fail to get stdlib we can just use this one
let mut ft = Rc::new(RefCell::new(FTable::new()));
match get_stdlib() {