]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Refactor: Fix typo in function name.
authorBruno Haible <bruno@clisp.org>
Sun, 11 May 2025 01:25:42 +0000 (03:25 +0200)
committerBruno Haible <bruno@clisp.org>
Sun, 11 May 2025 01:25:42 +0000 (03:25 +0200)
* gettext-tools/src/x-d.c (extract_from_template_instantiation): Renamed from
extract_from_template_instantation.

gettext-tools/src/x-d.c

index 09ec90a6e0ec5e188358336b15ab4b773c9769b4..d530bb081b02f9836adf1bb7999eefcc4992640c 100644 (file)
@@ -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;
             }
         }