From 804947ebb97a94d3398d9893801596dc0ca6596e Mon Sep 17 00:00:00 2001 From: ilhamdev0 <57636145+ilhamdev0@users.noreply.github.com> Date: Tue, 6 Jul 2021 02:14:07 +0700 Subject: [PATCH] Update layout.md Fix typo --- docs/source/tags/layout.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/tags/layout.md b/docs/source/tags/layout.md index ae39120eb..040c12e01 100644 --- a/docs/source/tags/layout.md +++ b/docs/source/tags/layout.md @@ -12,7 +12,7 @@ Renders current template inside a layout template from the template [roots][root {% layout 'footer.liquid' %} ``` -Whe the [extname][extname] option is set, the above `.liquid` extension can be omitted and writes: +When the [extname][extname] option is set, the above `.liquid` extension can be omitted and writes: ```liquid {% layout 'footer' %} @@ -31,7 +31,7 @@ Variables defined in current template can be passed to a the layout template by ## Blocks -The layout file can contain multiple `block`s which will be populated by the child template (the caller). For example we have a `default-layout.liquid` file with the following contents: +The layout file can contain multiple `blocks` which will be populated by the child template (the caller). For example we have a `default-layout.liquid` file with the following contents: ``` Header