diff --git a/prototype/doubt-difftool/Unified.swift b/prototype/doubt-difftool/Unified.swift index 2575fef97..4f08b364c 100644 --- a/prototype/doubt-difftool/Unified.swift +++ b/prototype/doubt-difftool/Unified.swift @@ -1,4 +1,4 @@ -func unified(patch: Patch, source: String) -> String { +private func unified(patch: Patch, source: String) -> String { return (patch.state.before.map { "{-\($0)-}" } ?? "") + (patch.state.after.map { "{+\($0)+}" } ?? "") }