Fix doc comments

This commit is contained in:
zawz 2020-03-03 09:36:35 +01:00
parent d6a308bdbc
commit a25510f685

View file

@ -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
] ]
``` ```