From 53c00beef97a0657d0d760ee636ed7cdac70b2af Mon Sep 17 00:00:00 2001 From: Hisham Bin Ateya Date: Sun, 1 Oct 2023 19:55:44 +0300 Subject: [PATCH] Fix doc typo --- .../INotificationMethodProvider.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/OrchardCore/OrchardCore.Notifications.Abstractions/INotificationMethodProvider.cs b/src/OrchardCore/OrchardCore.Notifications.Abstractions/INotificationMethodProvider.cs index f2a3b9e7a0e..d2766cc2519 100644 --- a/src/OrchardCore/OrchardCore.Notifications.Abstractions/INotificationMethodProvider.cs +++ b/src/OrchardCore/OrchardCore.Notifications.Abstractions/INotificationMethodProvider.cs @@ -6,7 +6,7 @@ namespace OrchardCore.Notifications; public interface INotificationMethodProvider { /// - /// Unique name for the provider + /// Unique name for the provider. /// string Method { get; } @@ -16,10 +16,10 @@ public interface INotificationMethodProvider LocalizedString Name { get; } /// - /// Attempts to send the given message to the given notifiable object + /// Attempts to send the given message to the given notifiable object. /// /// /// - /// true when the message was successfuly sent otherwise false + /// true when the message was successfully sent otherwise false. Task TrySendAsync(object notify, INotificationMessage message); }