From 979b740099605bbe118e0aa0b67be83d66039042 Mon Sep 17 00:00:00 2001 From: Roberto Marzialetti Date: Thu, 11 Jan 2024 11:54:32 +0100 Subject: [PATCH] Update listing.md Fix typo --- docs/03.reference/02.tags/listing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/03.reference/02.tags/listing.md b/docs/03.reference/02.tags/listing.md index a9ca8b6ee..185335be1 100644 --- a/docs/03.reference/02.tags/listing.md +++ b/docs/03.reference/02.tags/listing.md @@ -10,7 +10,7 @@ Tags are at the core of Lucee Server's templating language. CFML Tags can also be called via [[tag-script]]. Usually you don't even need the CF prefix, but you need it in some cases when there is an existing function with the same name. You can also omit () when using the script syntax for tags. ```luceescript -cflog(text="I called a tag from script); // use cflog, because there is already a maths [[function-log]] function +cflog(text="I called a tag from script"); // use cflog, because there is already a maths [[function-log]] function cfhttp(url="https://docs.lucee.org");