Skip to content

Commit 8fc9be9

Browse files
author
Matthew Gibbons
committed
Tutorial wording catch
Reread through my enums tutorial and found an funky sentence. Small edit.
1 parent 259e52c commit 8fc9be9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/intro-to-c/enums/enum-tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ enum enum_name variable_name, another_one;
8080
enum enum_name {Const1, Const2, Const3, ..., ConstN} different_variable_name, variable_name, another_one;
8181
```
8282
83-
**Note:** Splitting the variable type up looks a bit strange. This is only done for the sake of example. The second option is a nicer and cleaner.
83+
**Note:** Splitting the variable type up looks a bit strange. This is only done for the sake of example. The second option is nicer and cleaner.
8484
8585
8686
Now we can assign and use our enumerated values in code. Lets look at something simple using the `exp_value` example.

0 commit comments

Comments
 (0)