Fix mislabeled object name

This commit is contained in:
Hoxell
2024-02-11 17:46:34 +01:00
committed by Philip K.F. Hölzenspies
parent 28d98b461b
commit 4bf6d3069d

View File

@@ -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}]