* c.texi (break Statement): Fix a typo (missing '*').

This commit is contained in:
Ineiev 2025-04-25 10:27:09 +00:00
parent 55f2c0ba27
commit 49ee4eb3f4
1 changed files with 1 additions and 1 deletions

2
c.texi
View File

@ -8268,7 +8268,7 @@ innermost loop containing it.
@example
struct list_if_tuples
@{
struct list_if_tuples next;
struct list_if_tuples *next;
int length;
data *contents;
@};