Changed 'Map' to 'Dict' in many places

This commit is contained in:
Chadtech 2020-12-05 23:26:00 -05:00
parent 54ba54680d
commit 197d3c3c81
6 changed files with 43 additions and 39 deletions

View file

@ -64,7 +64,7 @@ impl ModuleName {
pub const STR: &'static str = "Str";
pub const NUM: &'static str = "Num";
pub const LIST: &'static str = "List";
pub const MAP: &'static str = "Map";
pub const DICT: &'static str = "Dict";
pub const SET: &'static str = "Set";
pub const RESULT: &'static str = "Result";