Skip to content

Commit

Permalink
rename util to utils
Browse files Browse the repository at this point in the history
  • Loading branch information
Firanel committed Jan 1, 2023
1 parent 21bc9a0 commit eba73e5
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@



local utils = require "lua-color.util"
local class = require "lua-color.util.class"
local utils = require "lua-color.utils"
local class = require "lua-color.utils.class"


-- Lua 5.1 compat
local bitwise = require "lua-color.util.bitwise"
local bitwise = require "lua-color.utils.bitwise"
local bit_and = bitwise.bit_and
local bit_lshift = bitwise.bit_lshift
local bit_rshift = bitwise.bit_rshift
Expand Down
2 changes: 1 addition & 1 deletion terminal.lua
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
-- [More information](https://en.wikipedia.org/wiki/ANSI_escape_code#SGR_\(Select_Graphic_Rendition\)_parameters)

local Color = require "lua-color"
local utils = require "lua-color.util"
local utils = require "lua-color.utils"

local escape = "\x1b["

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit eba73e5

Please sign in to comment.