Skip to content

Commit

Permalink
Fix issues with misnamed imports
Browse files Browse the repository at this point in the history
  • Loading branch information
chuck-flowers committed Jan 10, 2024
1 parent 0e9437d commit 2af9a34
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lua/orgmode/parser/search.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
--TODO: Support regex search

local Date = require('orgmode.objects.date')
local parsing = require('orgmode.parsers.utils')
local parsing = require('orgmode.parser.utils')

---@class Search
---@field term string
Expand Down
2 changes: 1 addition & 1 deletion lua/orgmode/parser/todo-config.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
local parsing = require('orgmode.parsers.utils')
local parsing = require('orgmode.parser.utils')

--- @class TodoConfig
--- @field words TodoConfigWord[]
Expand Down

0 comments on commit 2af9a34

Please sign in to comment.