Skip to content

Commit

Permalink
chore: consistent casing in class names
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisgrieser committed Nov 23, 2024
1 parent f02c921 commit 4e4e146
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lua/justice/config.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
local M = {}
--------------------------------------------------------------------------------

---@class Justice.config
---@class Justice.Config
local defaultConfig = {
recipes = {
-- All strings here are checked via `string.find`, that is as lua
Expand Down Expand Up @@ -40,7 +40,7 @@ M.config = defaultConfig

--------------------------------------------------------------------------------

---@param userConfig? Justice.config
---@param userConfig? Justice.Config
M.setup = function(userConfig)
M.config = vim.tbl_deep_extend("force", defaultConfig, userConfig or {})
end
Expand Down
2 changes: 1 addition & 1 deletion lua/justice/init.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
local M = {}
--------------------------------------------------------------------------------

---@param userConfig? Justice.config
---@param userConfig? Justice.Config
M.setup = function(userConfig) require("justice.config").setup(userConfig) end

---@param opts? Justice.RunOptions
Expand Down

0 comments on commit 4e4e146

Please sign in to comment.