From 0be569fb2606bcd8dbbbbf4d9412f5fa85df1a5b Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Tue, 23 Jun 2015 21:35:34 -0700 Subject: [PATCH] update README for block comment update --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 55c43bd..c69d17e 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,9 @@ of the syntax and grammar are listed here. * Single line comments start with `#` or `//` - * Multi-line comments are wrapped in `/*` and `*/` + * Multi-line comments are wrapped in `/*` and `*/`. Nested block comments + are not allowed. A multi-line comment (also known as a block comment) + terminates at the first `*/` found. * Values are assigned with the syntax `key = value` (whitespace doesn't matter). The value can be any primitive: a string, number, boolean,