From d264b75eb29cfc1916e3c1ccc7a3251a40458392 Mon Sep 17 00:00:00 2001 From: Jason Merrill Date: Wed, 9 Oct 2024 12:31:57 -0400 Subject: libcpp: fix typo libcpp/ChangeLog: * macro.cc (_cpp_pop_context): Fix typo. --- libcpp/macro.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libcpp') diff --git a/libcpp/macro.cc b/libcpp/macro.cc index 056b38e60931..2fb38618246a 100644 --- a/libcpp/macro.cc +++ b/libcpp/macro.cc @@ -2905,7 +2905,7 @@ _cpp_pop_context (cpp_reader *pfile) } pfile->context = context->prev; - /* decrease peak memory consumption by feeing the context. */ + /* Decrease peak memory consumption by freeing the context. */ pfile->context->next = NULL; free (context); } -- cgit v1.2.3