https://gcc.gnu.org/g:d264b75eb29cfc1916e3c1ccc7a3251a40458392
commit r15-4218-gd264b75eb29cfc1916e3c1ccc7a3251a40458392 Author: Jason Merrill <ja...@redhat.com> Date: Wed Oct 9 12:31:57 2024 -0400 libcpp: fix typo libcpp/ChangeLog: * macro.cc (_cpp_pop_context): Fix typo. Diff: --- libcpp/macro.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }