From 21380ea8faa1d3da7cbfc9daab8718e3355c1114 Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Thu, 1 Aug 2024 08:06:35 -0400 Subject: [PATCH] Fix typo in Texinfo command. --- c.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c.texi b/c.texi index 07946da..255925c 100644 --- a/c.texi +++ b/c.texi @@ -5868,7 +5868,7 @@ A @dfn{structure} is a user-defined data type that holds various @dfn{fields} of data. Each field has a name and a data type specified in the structure's definition. Because a structure combines various fields, each of its own type, we call a structure type a @dfn{compound -type}. (Union types are also compound types; @pxef{Unions}.) +type}. (Union types are also compound types; @pxref{Unions}.) Here we define a structure suitable for storing a linked list of integers. Each list item will hold one integer, plus a pointer