From f4e6d277ae21ba5fcb4dcfaedea292003e8e529c Mon Sep 17 00:00:00 2001 From: Amir Abbas Mousavian Date: Sat, 3 Dec 2016 13:34:32 +0330 Subject: [PATCH] Updated source highlighting --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 762cd77..ad35895 100644 --- a/README.md +++ b/README.md @@ -138,7 +138,7 @@ func fileproviderSucceed(_ fileProvider: FileProviderOperations, operation: File case .remove(path: let path): print("\(path) has been deleted.") default: - print("\(operation.actionDescription) from \(operation.source ?? "") to \(operation.destination) succeed") + print("\(operation.actionDescription) from \(operation.source!) to \(operation.destination) succeed") } } @@ -149,7 +149,7 @@ func fileproviderFailed(_ fileProvider: FileProviderOperations, operation: FileO case .remove: print("file can't be deleted.") default: - print("\(operation.actionDescription) from \(operation.source ?? "") to \(operation.destination) failed") + print("\(operation.actionDescription) from \(operation.source!) to \(operation.destination) failed") } }