Skip to content

Commit f6c8746

Browse files
Fix notification docs to use proper utils function.
1 parent 3ee675f commit f6c8746

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

DOCS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -733,7 +733,7 @@ require('orgmode').setup({
733733
notifier = function(tasks)
734734
local result = {}
735735
for _, task in ipairs(tasks) do
736-
utils.concat(result, {
736+
require('orgmode.utils').concat(result, {
737737
string.format('# %s (%s)', task.category, task.humanized_duration),
738738
string.format('%s %s %s', string.rep('*', task.level), task.todo, task.title),
739739
string.format('%s: <%s>', task.type, task.time:to_string())

doc/orgmode.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -967,7 +967,7 @@ Default configuration (detailed description below):
967967
notifier = function(tasks)
968968
local result = {}
969969
for _, task in ipairs(tasks) do
970-
utils.concat(result, {
970+
require('orgmode.utils').concat(result, {
971971
string.format('# %s (%s)', task.category, task.humanized_duration),
972972
string.format('%s %s %s', string.rep('*', task.level), task.todo, task.title),
973973
string.format('%s: <%s>', task.type, task.time:to_string())

0 commit comments

Comments
 (0)