Skip to content

Commit 6a5e563

Browse files
committed
refactor: reword "file an issue with" to "submit an issue to"
1 parent 3a8c9d2 commit 6a5e563

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/luarocks/build/lls-addon.lua

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ local function copyConfigSettings(sourcePath, luarc)
113113
local config = json.read(sourcePath)
114114

115115
if not json.isObject(config) then
116-
error("[BuildError]: root of " .. sourcePath .. " is not an object. File an issue with the addon developer.")
116+
error("[BuildError]: root of " .. sourcePath .. " is not an object. Submit an issue to the addon developer.")
117117
end
118118
---@cast config { [string]: any }
119119

@@ -122,7 +122,7 @@ local function copyConfigSettings(sourcePath, luarc)
122122
error(
123123
"[BuildError]: key 'settings' of "
124124
.. sourcePath
125-
.. " is not an object. File an issue with the addon developer."
125+
.. " is not an object. Submit an issue to the addon developer."
126126
)
127127
end
128128
---@cast settings { [string]: any }
@@ -142,7 +142,7 @@ end
142142
local function copyBuildSettings(settings, luarc)
143143
settings = json.coerce(settings)
144144
if not json.isObject(settings) then
145-
error("[BuildError]: 'rockspec.build.settings' is not an object. File an issue with the addon developer.")
145+
error("[BuildError]: 'rockspec.build.settings' is not an object. Submit an issue to the addon developer.")
146146
end
147147

148148
log.info("Merging 'rockspec.build.settings' into .luarc.json")
@@ -373,7 +373,7 @@ M.installAddon = installAddon
373373

374374
local CRASH_MESSAGE = [[
375375
An error occurred while running the lls-addon backend.
376-
Please file an issue at https://github.com/LuaLS/luarocks-build-addon/issues
376+
Please submit an issue at https://github.com/LuaLS/luarocks-build-addon/issues
377377
]]
378378

379379
---@param rockspec luarocks.rockspec

0 commit comments

Comments
 (0)