Skip to content

Commit e359660

Browse files
committed
Fix message
1 parent 3cd0b96 commit e359660

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/orgmode/agenda/init.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ function Agenda:prompt()
389389
{ label = 'Agenda for current week or day', key = 'a', action = function() return self:agenda() end },
390390
{ label = 'List of all TODO entries', key = 't', action = function() return self:todos() end },
391391
{ label = 'Match a TAGS query', key = 'm', action = function() return self:tags({clear_search = true, tags = nil, todo_only = false}) end },
392-
{ label = 'Like M, but only TODO entries', key = 'M', action = function() return self:tags({clear_search = true, tags = nil, todo_only = true}) end },
392+
{ label = 'Like m, but only TODO entries', key = 'M', action = function() return self:tags({clear_search = true, tags = nil, todo_only = true}) end },
393393
{ label = 'Search for keywords', key = 's', action = function() return self:search(true) end },
394394
{ label = 'Quit', key = 'q' },
395395
{ label = '', separator = ' ', length = 1 },

0 commit comments

Comments
 (0)