From b8880d685cc2f40d38b831a6f4e76062db31520c Mon Sep 17 00:00:00 2001 From: Ajith Menon <40847889+AjithMenonIN@users.noreply.github.com> Date: Tue, 15 Jan 2019 13:05:26 -0800 Subject: [PATCH] corrected spelling (#30261) --- guide/english/c/structured-data-types/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/c/structured-data-types/index.md b/guide/english/c/structured-data-types/index.md index eda0a4c058..dfd5abfe76 100644 --- a/guide/english/c/structured-data-types/index.md +++ b/guide/english/c/structured-data-types/index.md @@ -60,7 +60,7 @@ Unions are declared in the same was as structs, but are different because only o typedef union{ int circle; int triangle; - int ovel; + int oval; }shape; ``` You should use `union` in such case where only one condition will be applied and only one variable will be used.