From 6203f03e308f7dfad91c019c968bd428fb42ad36 Mon Sep 17 00:00:00 2001 From: "Andrew M. White" Date: Tue, 24 Oct 2023 12:25:55 -0700 Subject: [PATCH] Fix typo in docs (filenameWithoutExtension) --- docs/Queries/Grouping.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Queries/Grouping.md b/docs/Queries/Grouping.md index bd6ff93aab..7d2735e1db 100644 --- a/docs/Queries/Grouping.md +++ b/docs/Queries/Grouping.md @@ -839,7 +839,7 @@ group by function task.file.filename - Like 'group by filename' but does not link to the file. ```javascript -group by function task.file.filename.filenameWithoutExtension + (task.hasHeading ? (' > ' + task.heading) : '') +group by function task.file.filenameWithoutExtension + (task.hasHeading ? (' > ' + task.heading) : '') ``` - Like 'group by backlink' but does not link to the heading in the file.