From a25510f6856907d662037fbb7f3c43888b1653eb Mon Sep 17 00:00:00 2001 From: zawz Date: Tue, 3 Mar 2020 09:36:35 +0100 Subject: [PATCH] Fix doc comments --- md/filedat.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/md/filedat.md b/md/filedat.md index 1151a47..f0d45b4 100644 --- a/md/filedat.md +++ b/md/filedat.md @@ -21,10 +21,10 @@ Format is as follows: key1=value key2 = " value " key3 = ' value ' - // brace and brackets have to be the first valid chars for list and maps - key4 = [ //list ] - key5 = { //map } - // multiple values in a single line + # brace and brackets have to be the first valid chars for list and maps + key4 = [ ] // list + key5 = { } # map + # multiple values in a single line key6=foo; key7=bar } ``` @@ -39,8 +39,8 @@ Format is as follows: value, " value ", ' value ', - { //chunk }, - [ //list ], + { }, # map + [ ] # list ] ```