Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
fsestini committed Feb 18, 2025
1 parent 2655835 commit 3b475fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/neogit/lib/graph/kitty.lua
Original file line number Diff line number Diff line change
Expand Up @@ -670,10 +670,10 @@ function M.build(commits, color)
local connector_row = { cells = connector_cells } ---@type I.Row

-- handle bi-connector rows
local is_bi_crossing, bi_crossing_safely_resolveable =
local is_bi_crossing, bi_crossing_safely_resolvable =
get_is_bi_crossing(commit_row, connector_row, next_commit)

if is_bi_crossing and bi_crossing_safely_resolveable and next_commit then
if is_bi_crossing and bi_crossing_safely_resolvable and next_commit then
resolve_bi_crossing(prev_commit_row, prev_connector_row, commit_row, connector_row, next_commit)
end

Expand Down

0 comments on commit 3b475fc

Please sign in to comment.