From d0a0d36b9d0b994dc5776be6ec20d69ea26f14ca Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Sun, 24 Mar 2024 21:06:17 -0700 Subject: [PATCH] Fix typo. --- .../Sources/Account/CloudKit/CloudKitAccountDelegate.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Account/Sources/Account/CloudKit/CloudKitAccountDelegate.swift b/Account/Sources/Account/CloudKit/CloudKitAccountDelegate.swift index 5c01172ae..f7c938b7e 100644 --- a/Account/Sources/Account/CloudKit/CloudKitAccountDelegate.swift +++ b/Account/Sources/Account/CloudKit/CloudKitAccountDelegate.swift @@ -119,8 +119,8 @@ final class CloudKitAccountDelegate: AccountDelegate { func refreshArticleStatus(for account: Account, completion: @escaping ((Result) -> Void)) { let op = CloudKitReceiveStatusOperation(articlesZone: articlesZone) - op.completionBlock = { mainThreadOperaion in - if mainThreadOperaion.isCanceled { + op.completionBlock = { mainThreadOperation in + if mainThreadOperation.isCanceled { completion(.failure(CloudKitAccountDelegateError.unknown)) } else { completion(.success(()))