From 11fbbf6ad470431081000ed768b03c23e065d295 Mon Sep 17 00:00:00 2001 From: Jonathan Frere Date: Tue, 28 Jan 2025 14:29:57 +0100 Subject: [PATCH] docs: fix typo in templating language example --- docs/templates.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/templates.md b/docs/templates.md index 5bb1bb49f..3a275faaf 100644 --- a/docs/templates.md +++ b/docs/templates.md @@ -392,7 +392,7 @@ New keywords and functions can be defined as aliases, by using any combination of the predefined keywords/functions and other aliases. Alias functions can be overloaded by the number of parameters. However, builtin -function will be shadowed by name, and can't co-exist with aliases. +functions will be shadowed by name, and can't co-exist with aliases. For example: @@ -401,7 +401,7 @@ For example: 'commit_change_ids' = ''' concat( format_field("Commit ID", commit_id), - format_field("Change ID", commit_id), + format_field("Change ID", change_id), ) ''' 'format_field(key, value)' = 'key ++ ": " ++ value ++ "\n"'