Skip to content

Commit d027974

Browse files
committed
no need to use list
1 parent 532d5e0 commit d027974

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

modules/structures.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,7 @@ de-reference operator on `foo`.
206206
## Structure initialization
207207

208208
Can initialize a structure in its definition using the initiator list of values.
209+
209210
You must either follow the ordering of members:
210211

211212
```C
@@ -220,7 +221,7 @@ struct foo_s foo = { 1, 'C', "hello world" };
220221
221222
#source struct-init.c
222223
223-
- or use *designated initializers* from C99:
224+
or use *designated initializers* from C99:
224225
225226
```C
226227
struct foo_s foo = {

0 commit comments

Comments
 (0)