From: Bruno Haible Date: Sun, 11 May 2025 01:25:42 +0000 (+0200) Subject: Refactor: Fix typo in function name. X-Git-Tag: v0.26~150 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3eba2cddb0999f2c3458f9efed6d083a9fc3dcd7;p=thirdparty%2Fgettext.git Refactor: Fix typo in function name. * gettext-tools/src/x-d.c (extract_from_template_instantiation): Renamed from extract_from_template_instantation. --- diff --git a/gettext-tools/src/x-d.c b/gettext-tools/src/x-d.c index 09ec90a6e..d530bb081 100644 --- a/gettext-tools/src/x-d.c +++ b/gettext-tools/src/x-d.c @@ -1325,11 +1325,11 @@ extract_from_function_call_without_args (TSNode callee_node, - ARGS_NODE: a tree node of type 'template_arguments'. Extracted messages are added to MLP. */ static void -extract_from_template_instantation (TSNode node, - TSNode identifier_node, - TSNode args_node, - flag_region_ty *outer_region, - message_list_ty *mlp) +extract_from_template_instantiation (TSNode node, + TSNode identifier_node, + TSNode args_node, + flag_region_ty *outer_region, + message_list_ty *mlp) { uint32_t args_count = ts_node_child_count (args_node); @@ -1608,10 +1608,10 @@ extract_from_node (TSNode node, TSNode args_node = ts_node_named_child (node, a); if (ts_node_symbol (args_node) != ts_symbol_template_arguments) abort (); - extract_from_template_instantation (node, - identifier_node, args_node, - outer_region, - mlp); + extract_from_template_instantiation (node, + identifier_node, args_node, + outer_region, + mlp); return; } }