diff --git a/WordPress/Classes/Services/PostService.m b/WordPress/Classes/Services/PostService.m index 852295048e83..9a87fa1e695a 100644 --- a/WordPress/Classes/Services/PostService.m +++ b/WordPress/Classes/Services/PostService.m @@ -832,7 +832,7 @@ - (RemotePost *)remotePostWithPost:(AbstractPost *)post remotePost.categories = [self remoteCategoriesForPost:postPost]; remotePost.metadata = [self remoteMetadataForPost:postPost]; - // Because we can't get what's the self-hosted non JetPack site capabilities + // Because we can't get what's the self-hosted non Jetpack site capabilities // only Admin users are allowed to set a post as sticky. // This doesn't affect WPcom sites. // diff --git a/WordPress/Classes/Utility/BackgroundTasks/WeeklyRoundupBackgroundTask.swift b/WordPress/Classes/Utility/BackgroundTasks/WeeklyRoundupBackgroundTask.swift index 5e1f1da413ef..0046ed8ffcc3 100644 --- a/WordPress/Classes/Utility/BackgroundTasks/WeeklyRoundupBackgroundTask.swift +++ b/WordPress/Classes/Utility/BackgroundTasks/WeeklyRoundupBackgroundTask.swift @@ -357,8 +357,8 @@ class WeeklyRoundupBackgroundTask: BackgroundTask { func run(onError: @escaping (Error) -> Void, completion: @escaping (Bool) -> Void) { - // This will no longer run for WordPress as part of JetPack migration. - // This can be removed once JetPack migration is complete. + // This will no longer run for WordPress as part of Jetpack migration. + // This can be removed once Jetpack migration is complete. guard JetpackNotificationMigrationService.shared.shouldPresentNotifications() else { notificationScheduler.cancellAll() notificationScheduler.cancelStaticNotification() diff --git a/WordPress/Classes/ViewRelated/Post/PostSettingsViewController.m b/WordPress/Classes/ViewRelated/Post/PostSettingsViewController.m index a8d73f71eea8..0d1e394e9f26 100644 --- a/WordPress/Classes/ViewRelated/Post/PostSettingsViewController.m +++ b/WordPress/Classes/ViewRelated/Post/PostSettingsViewController.m @@ -365,7 +365,7 @@ - (void)configureSections stickyPostSection, @(PostSettingsSectionShare), @(PostSettingsSectionMoreOptions) ] mutableCopy]; - // Remove sticky post section for self-hosted non JetPack site + // Remove sticky post section for self-hosted non Jetpack site // and non admin user // if (![self.apost.blog supports:BlogFeatureWPComRESTAPI] && !self.apost.blog.isAdmin) {