From 1498440c1c2cc258de9d8bb4a327c233d1828279 Mon Sep 17 00:00:00 2001 From: Afonso Coutinho <116525378+afonsopc@users.noreply.github.com> Date: Mon, 27 Oct 2025 12:42:15 +0000 Subject: [PATCH] add missing space in code block --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3734a290f..c5a3309bf 100644 --- a/README.md +++ b/README.md @@ -145,7 +145,7 @@ If you want to raise on a first exception instead of pushing all of them in `err ```ruby template = Liquid::Template.parse("{{x}} {{y}}") -template.render!({ 'x' => 1}, { strict_variables: true }) +template.render!({ 'x' => 1 }, { strict_variables: true }) #=> Liquid::UndefinedVariable: Liquid error: undefined variable y ```