Fix doc comments
This commit is contained in:
parent
d6a308bdbc
commit
a25510f685
1 changed files with 6 additions and 6 deletions
|
|
@ -21,10 +21,10 @@ Format is as follows:
|
||||||
key1=value
|
key1=value
|
||||||
key2 = " value "
|
key2 = " value "
|
||||||
key3 = ' value '
|
key3 = ' value '
|
||||||
// brace and brackets have to be the first valid chars for list and maps
|
# brace and brackets have to be the first valid chars for list and maps
|
||||||
key4 = [ //list ]
|
key4 = [ ] // list
|
||||||
key5 = { //map }
|
key5 = { } # map
|
||||||
// multiple values in a single line
|
# multiple values in a single line
|
||||||
key6=foo; key7=bar
|
key6=foo; key7=bar
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
@ -39,8 +39,8 @@ Format is as follows:
|
||||||
value,
|
value,
|
||||||
" value ",
|
" value ",
|
||||||
' value ',
|
' value ',
|
||||||
{ //chunk },
|
{ }, # map
|
||||||
[ //list ],
|
[ ] # list
|
||||||
]
|
]
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue