diff --git a/src/OrchardCore.Modules/OrchardCore.Notifications/Manifest.cs b/src/OrchardCore.Modules/OrchardCore.Notifications/Manifest.cs index 1e7f4c957ac..82fb00d608f 100644 --- a/src/OrchardCore.Modules/OrchardCore.Notifications/Manifest.cs +++ b/src/OrchardCore.Modules/OrchardCore.Notifications/Manifest.cs @@ -16,7 +16,7 @@ [assembly: Feature( Id = "OrchardCore.Notifications.Email", Name = "Email Notifications", - Description = "Provides a way to sent email notifications to users.", + Description = "Provides a way to send email notifications to users.", Category = "Notifications", Dependencies = new[] { diff --git a/src/OrchardCore.Modules/OrchardCore.Sms/Manifest.cs b/src/OrchardCore.Modules/OrchardCore.Sms/Manifest.cs index 957508f6f85..9a9ecc86a9a 100644 --- a/src/OrchardCore.Modules/OrchardCore.Sms/Manifest.cs +++ b/src/OrchardCore.Modules/OrchardCore.Sms/Manifest.cs @@ -16,7 +16,7 @@ [assembly: Feature( Name = "SMS Notifications", Id = "OrchardCore.Notifications.Sms", - Description = "Provides a way to sent SMS notifications to users.", + Description = "Provides a way to send SMS notifications to users.", Category = "Notifications", Dependencies = new[] { diff --git a/src/OrchardCore/OrchardCore.Notifications.Abstractions/INotificationMethodProvider.cs b/src/OrchardCore/OrchardCore.Notifications.Abstractions/INotificationMethodProvider.cs index c3ddc5c3632..f2a3b9e7a0e 100644 --- a/src/OrchardCore/OrchardCore.Notifications.Abstractions/INotificationMethodProvider.cs +++ b/src/OrchardCore/OrchardCore.Notifications.Abstractions/INotificationMethodProvider.cs @@ -16,7 +16,7 @@ public interface INotificationMethodProvider LocalizedString Name { get; } /// - /// Attempts to sent the given message to the given notifiable object + /// Attempts to send the given message to the given notifiable object /// /// /// diff --git a/src/OrchardCore/OrchardCore.Notifications.Abstractions/INotificationService.cs b/src/OrchardCore/OrchardCore.Notifications.Abstractions/INotificationService.cs index 51a21dd22e5..db416cc3252 100644 --- a/src/OrchardCore/OrchardCore.Notifications.Abstractions/INotificationService.cs +++ b/src/OrchardCore/OrchardCore.Notifications.Abstractions/INotificationService.cs @@ -5,7 +5,7 @@ namespace OrchardCore.Notifications; public interface INotificationService { /// - /// Attempts to sent the given message to the given notifiable object. + /// Attempts to send the given message to the given notifiable object. /// /// ///