From 4bf6d3069d2e406101a28918fa2cf22bbbffd71b Mon Sep 17 00:00:00 2001 From: Hoxell <9694402+hoxell@users.noreply.github.com> Date: Sun, 11 Feb 2024 17:46:34 +0100 Subject: [PATCH] Fix mislabeled object name --- .../language-tutorial/pages/02_filling_out_a_template.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/language-tutorial/pages/02_filling_out_a_template.adoc b/docs/modules/language-tutorial/pages/02_filling_out_a_template.adoc index 30f3eea2..4c2c9955 100644 --- a/docs/modules/language-tutorial/pages/02_filling_out_a_template.adoc +++ b/docs/modules/language-tutorial/pages/02_filling_out_a_template.adoc @@ -33,7 +33,7 @@ parrot = (bird) { ---- `parrot` and `bird` have nearly identical properties. -They only differ in their name and taxonomy, so if you have already written out `bird`, you can say that `parrot` is just like `pigeon` except `name` is `"Parrot"`, diet is `"Berries"` the `taxonomy.order` is `"Psittaciformes"`. +They only differ in their name and taxonomy, so if you have already written out `bird`, you can say that `parrot` is just like `bird` except `name` is `"Parrot"`, diet is `"Berries"` the `taxonomy.order` is `"Psittaciformes"`. When you run this, Pkl expands everything fully. [source,{pkl}]