From 8eb66e4800b1d9ebcb285307a5ca7c0f7bb13472 Mon Sep 17 00:00:00 2001 From: Greg Van Liew Date: Wed, 3 Jun 2020 15:18:02 -0700 Subject: [PATCH] Fix extra 'of' typo --- src/vs/workbench/contrib/userDataSync/browser/userDataSync.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/userDataSync/browser/userDataSync.ts b/src/vs/workbench/contrib/userDataSync/browser/userDataSync.ts index 650e671ce2b76..d11901e785e4a 100644 --- a/src/vs/workbench/contrib/userDataSync/browser/userDataSync.ts +++ b/src/vs/workbench/contrib/userDataSync/browser/userDataSync.ts @@ -298,7 +298,7 @@ export class UserDataSyncWorkbenchContribution extends Disposable implements IWo this.disableSync(); this.notificationService.notify({ severity: Severity.Error, - message: localize('error upgrade required', "Preferences sync is disabled because the current version ({0}, {1}) of is not compatible with the sync service. Please update before turning on sync.", this.productService.version, this.productService.commit), + message: localize('error upgrade required', "Preferences sync is disabled because the current version ({0}, {1}) is not compatible with the sync service. Please update before turning on sync.", this.productService.version, this.productService.commit), }); return true; }