Skip to content

Commit

Permalink
fix(maneoeuvre): lib -> utils
Browse files Browse the repository at this point in the history
  • Loading branch information
vhyrro committed Aug 1, 2023
1 parent 93bf092 commit 0949a4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/neorg/modules/core/manoeuvre/module.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ There is no available successor to this module yet.
-- we hope to implement one with the module rewrite of 0.2.

local neorg = require("neorg.core")
local lib, log, modules = neorg.lib, neorg.log, neorg.modules
local utils, log, modules = neorg.utils, neorg.log, neorg.modules

local module = modules.create("core.manoeuvre")

module.setup = function()
if not lib.is_minimum_version(0, 7, 0) then
if not utils.is_minimum_version(0, 7, 0) then
log.error("This module requires at least Neovim 0.7 to run!")

return {
Expand Down

0 comments on commit 0949a4a

Please sign in to comment.