Flatten type groups and types in parentheses.

This commit is contained in:
Stephen Chung
2020-09-22 21:29:44 +08:00
parent 3224c5baf5
commit 5a37497a22
2 changed files with 15 additions and 5 deletions

View File

@@ -40,7 +40,7 @@ macro_rules! gen_concat_functions {
macro_rules! reg_functions {
($mod_name:ident += $root:ident ; $($arg_type:ident),+) => { $(
combine_with_exported_module!($mod_name, "strings_merge", $root::$arg_type::functions);
combine_with_exported_module!($mod_name, "strings_concat", $root::$arg_type::functions);
)* }
}