Skip to content

Commit b288c07

Browse files
authored
Fix typo: "unable" -> "unable to" (#234)
1 parent 20f5650 commit b288c07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/null-ls/builtins/formatting/nix_flake_fmt.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ local find_nix_fmt = function(opts, done)
130130
if status ~= 0 then
131131
local stderr = table.concat(stderr_lines, "\n")
132132
vim.defer_fn(function()
133-
log:warn(string.format("unable discover 'nix fmt' command. stderr: %s", stderr))
133+
log:warn(string.format("unable to discover 'nix fmt' command. stderr: %s", stderr))
134134
end, 0)
135135
done(nil)
136136
return

0 commit comments

Comments
 (0)