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.