change just Json module name

This commit is contained in:
Luke Boswell 2023-06-04 17:37:01 +10:00
parent 7b22785b2b
commit c1ff49be6c
No known key found for this signature in database
GPG key ID: F6DB3C9DB47377B0
26 changed files with 5495 additions and 5530 deletions

View file

@ -3845,7 +3845,7 @@ fn load_module<'a>(
"Encode", ModuleId::ENCODE
"Decode", ModuleId::DECODE
"Hash", ModuleId::HASH
"Json", ModuleId::JSON
"TotallyNotJson", ModuleId::JSON
}
let (filename, opt_shorthand) = module_name_to_path(src_dir, &module_name, arc_shorthands);

View file

@ -23,5 +23,5 @@ pub const BUILTIN_MODULES: &[(ModuleId, &str)] = &[
(ModuleId::ENCODE, "Encode"),
(ModuleId::DECODE, "Decode"),
(ModuleId::HASH, "Hash"),
(ModuleId::JSON, "Json"),
(ModuleId::JSON, "TotallyNotJson"),
];