Skip to content

Commit c236dba

Browse files
committed
fixup
1 parent eb5f4da commit c236dba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: Coder-Desktop/VPNLib/FileSync/MutagenConvert.swift

+3-3
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ func formatChanges(_ changesByPath: [String: (alpha: [Core_Change], beta: [Core_
142142
changes.alpha[0].new.kind == .file,
143143
changes.beta[0].new.kind == .file
144144
{
145-
result += "File: `\(formatPath(path))`\n"
145+
result += "File: '\(formatPath(path))'\n"
146146
continue
147147
}
148148
// Friendly message for `<non-existent -> !<non-existent>` conflicts
@@ -152,15 +152,15 @@ func formatChanges(_ changesByPath: [String: (alpha: [Core_Change], beta: [Core_
152152
changes.beta[0].hasNew
153153
{
154154
result += """
155-
An entry, `\(formatPath(path))`, was created on both endpoints that does not match.
155+
An entry, '\(formatPath(path))', was created on both endpoints that does not match.
156156
You can resolve this conflict by deleting one of the entries.\n
157157
"""
158158
continue
159159
}
160160
}
161161

162162
let formattedPath = formatPath(path)
163-
result += "Path: \(formattedPath)\n"
163+
result += "Path: '\(formattedPath)'\n"
164164

165165
// TODO: Local & Remote should be replaced with Alpha & Beta, once it's possible to configure which is which
166166

0 commit comments

Comments
 (0)