corrected spelling (#30261)

pull/33077/head^2
Ajith Menon 2019-01-15 13:05:26 -08:00 committed by Tom
parent db82a53408
commit b8880d685c
1 changed files with 1 additions and 1 deletions

View File

@ -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.