@@ -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 "
146146continue
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"""
158158continue
159159}
160160}
161161
162162let 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