c.texi (Cast to Union): Fix a typo, 'varuable'.

This commit is contained in:
Ineiev 2025-05-05 10:20:26 +00:00
parent 0637033739
commit 35ce19e318
1 changed files with 1 additions and 1 deletions

2
c.texi
View File

@ -6804,7 +6804,7 @@ union type is equivalent to storing in an alternative of the union:
/* @r{Define the union @code{foo}.} */
union foo @{ int i; double d; @};
/* @r{Declare the union-valued varuable, @code{u}.} */
/* @r{Declare the union-valued variable, @code{u}.} */
union foo u;
int x; double y;