From 35ce19e318881ad4ca383cf21c9d0aed9d8080fa Mon Sep 17 00:00:00 2001 From: Ineiev Date: Mon, 5 May 2025 10:20:26 +0000 Subject: [PATCH] c.texi (Cast to Union): Fix a typo, 'varuable'. --- c.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c.texi b/c.texi index 5416be9..017733c 100644 --- a/c.texi +++ b/c.texi @@ -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;