summaryrefslogtreecommitdiff
path: root/lua/lvim
diff options
context:
space:
mode:
authorAli Almohaya <[email protected]>2022-10-13 03:35:48 +0300
committerAli Almohaya <[email protected]>2022-10-13 03:35:48 +0300
commitfcced1811ec45f0c3e58eef99dd962ef872be20b (patch)
tree7d3c195a025b6e2c9ee2325848b989070f68d911 /lua/lvim
parentea1ebda243610d81325f75249423d59a5678cf65 (diff)
fix: typo in git.lua
Diffstat (limited to 'lua/lvim')
-rw-r--r--lua/lvim/utils/git.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lvim/utils/git.lua b/lua/lvim/utils/git.lua
index e1b5ccf2..c1bdca1b 100644
--- a/lua/lvim/utils/git.lua
+++ b/lua/lvim/utils/git.lua
@@ -40,7 +40,7 @@ local function safe_deep_fetch()
Log:error(vim.inspect(error))
return
end
- -- git fetch --unshallow will cause an error on a a complete clone
+ -- git fetch --unshallow will cause an error on a complete clone
local fetch_mode = result[1] == "true" and "--unshallow" or "--all"
ret = git_cmd { args = { "fetch", fetch_mode } }
if ret ~= 0 then