Skip to content

Commit

Permalink
docs: fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
dundargoc committed Jan 30, 2025
1 parent 31d2dcd commit 9b36d49
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lua/gitsigns/git/blame.lua
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ end

--- @param f fun(readline: fun(): string?))
--- @return fun(data: string?)
local function bufferred_line_reader(f)
local function buffered_line_reader(f)
--- @param data string?
return coroutine.wrap(function(data)
if not data then
Expand Down Expand Up @@ -250,7 +250,7 @@ function M.run_blame(obj, contents, lnum, revision, opts)

local commits = {} --- @type table<string,Gitsigns.CommitInfo>

local reader = bufferred_line_reader(function(readline)
local reader = buffered_line_reader(function(readline)
incremental_iter(readline, commits, ret)
end)

Expand Down
2 changes: 1 addition & 1 deletion test/actions_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ local function command(cmd)
helpers.api.nvim_command(cmd)

-- Flaky tests, add a large delay between commands.
-- Flakyness is due to actions being async and problems occur when an action
-- Flakiness is due to actions being async and problems occur when an action
-- is run while another action or update is running.
-- Must wait for actions and updates to finish.
helpers.sleep(delay)
Expand Down

0 comments on commit 9b36d49

Please sign in to comment.