Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
stephencelis committed Feb 9, 2024
1 parent 1d09b20 commit 036bb7b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Sources/CustomDump/Diff.swift
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,8 @@ public func diff<T>(_ lhs: T, _ rhs: T, format: DiffFormat = .default) -> String
terminator: "",
to: &out
)
} else if lhsItem == rhsItem, let (lhs, rhs) = (lhs as? _CustomDiffObject)?._customDiffValues
} else if lhsItem == rhsItem,
let (lhs, rhs) = (lhs as? _CustomDiffObject)?._customDiffValues
{
print(
diffHelp(
Expand Down

0 comments on commit 036bb7b

Please sign in to comment.