`STATIC_RULES` => `BUILTIN_MAPPINGS`

This commit is contained in:
cyqsimon 2023-11-04 21:47:13 +08:00
parent 7e1fbcfe95
commit c016b462c0
No known key found for this signature in database
GPG Key ID: 1D8CE2F297390D65
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ impl MappingList {
let len = array_items.len();
format!(
"static STATIC_RULES: [(BuiltinMatcher, MappingTarget); {len}] = [\n{items}\n];",
"static BUILTIN_MAPPINGS: [(BuiltinMatcher, MappingTarget); {len}] = [\n{items}\n];",
items = array_items.join(",\n")
)
}