@@ -208,42 +208,42 @@ public enum FileSyncWorkingStatus {
208208var name : String {
209209switch self {
210210case . connectingLocal:
211- return " Connecting (local) "
211+ " Connecting (local) "
212212case . connectingRemote:
213- return " Connecting (remote) "
213+ " Connecting (remote) "
214214case . scanning:
215- return " Scanning "
215+ " Scanning "
216216case . reconciling:
217- return " Reconciling "
217+ " Reconciling "
218218case . stagingLocal:
219- return " Staging (local) "
219+ " Staging (local) "
220220case . stagingRemote:
221- return " Staging (remote) "
221+ " Staging (remote) "
222222case . transitioning:
223- return " Transitioning "
223+ " Transitioning "
224224case . saving:
225- return " Saving "
225+ " Saving "
226226}
227227}
228228
229229var description : String {
230230switch self {
231231case . connectingLocal:
232- return " The session is attempting to connect to the local endpoint. "
232+ " The session is attempting to connect to the local endpoint. "
233233case . connectingRemote:
234- return " The session is attempting to connect to the remote endpoint. "
234+ " The session is attempting to connect to the remote endpoint. "
235235case . scanning:
236- return " The session is scanning the filesystem on each endpoint. "
236+ " The session is scanning the filesystem on each endpoint. "
237237case . reconciling:
238- return " The session is performing reconciliation. "
238+ " The session is performing reconciliation. "
239239case . stagingLocal:
240- return " The session is staging files locally "
240+ " The session is staging files locally "
241241case . stagingRemote:
242- return " The session is staging files on the remote "
242+ " The session is staging files on the remote "
243243case . transitioning:
244- return " The session is performing transition operations on each endpoint. "
244+ " The session is performing transition operations on each endpoint. "
245245case . saving:
246- return " The session is recording synchronization history to disk. "
246+ " The session is recording synchronization history to disk. "
247247}
248248}
249249}
@@ -258,30 +258,30 @@ public enum FileSyncErrorStatus {
258258var name : String {
259259switch self {
260260case . disconnected:
261- return " Disconnected "
261+ " Disconnected "
262262case . haltedOnRootEmptied:
263- return " Halted on root emptied "
263+ " Halted on root emptied "
264264case . haltedOnRootDeletion:
265- return " Halted on root deletion "
265+ " Halted on root deletion "
266266case . haltedOnRootTypeChange:
267- return " Halted on root type change "
267+ " Halted on root type change "
268268case . waitingForRescan:
269- return " Waiting for rescan "
269+ " Waiting for rescan "
270270}
271271}
272272
273273var description : String {
274274switch self {
275275case . disconnected:
276- return " The session is unpaused but not currently connected or connecting to either endpoint. "
276+ " The session is unpaused but not currently connected or connecting to either endpoint. "
277277case . haltedOnRootEmptied:
278- return " The session is halted due to the root emptying safety check. "
278+ " The session is halted due to the root emptying safety check. "
279279case . haltedOnRootDeletion:
280- return " The session is halted due to the root deletion safety check. "
280+ " The session is halted due to the root deletion safety check. "
281281case . haltedOnRootTypeChange:
282- return " The session is halted due to the root type change safety check. "
282+ " The session is halted due to the root type change safety check. "
283283case . waitingForRescan:
284- return " The session is waiting to retry scanning after an error during the previous scan. "
284+ " The session is waiting to retry scanning after an error during the previous scan. "
285285}
286286}
287287}