Skip to content

Commit

Permalink
Typos in OrchardCore.Notifications (#14409)
Browse files Browse the repository at this point in the history
  • Loading branch information
SzymonSel authored Sep 30, 2023
1 parent d743d5f commit 2580252
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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[]
{
Expand Down
2 changes: 1 addition & 1 deletion src/OrchardCore.Modules/OrchardCore.Sms/Manifest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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[]
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public interface INotificationMethodProvider
LocalizedString Name { get; }

/// <summary>
/// Attempts to sent the given message to the given notifiable object
/// Attempts to send the given message to the given notifiable object
/// </summary>
/// <param name="notify"></param>
/// <param name="message"></param>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace OrchardCore.Notifications;
public interface INotificationService
{
/// <summary>
/// Attempts to sent the given message to the given notifiable object.
/// Attempts to send the given message to the given notifiable object.
/// </summary>
/// <param name="notify"></param>
/// <param name="message"></param>
Expand Down

0 comments on commit 2580252

Please sign in to comment.