From d717b6ede33482ddb7ec53321582c26a585cf110 Mon Sep 17 00:00:00 2001 From: pantor Date: Fri, 10 Apr 2020 15:48:43 +0200 Subject: [PATCH] fix blocks in readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4ea7e19..80364ae 100644 --- a/README.md +++ b/README.md @@ -251,8 +251,8 @@ In the default configuration, no whitespace is removed while rendering the file. ```c++ Environment env; -env.set_trim(true); -env.set_lstrip(true); +env.set_trim_blocks(true); +env.set_lstrip_blocks(true); ``` With both `trim` and `lstrip` enabled, you can put statements on their own lines.