From bc64eb9b997b48085b469a0f07144623297568d8 Mon Sep 17 00:00:00 2001 From: hishamco Date: Thu, 17 Nov 2016 17:53:46 +0300 Subject: [PATCH] Fix LocalizeString docs --- .../LocalizedString.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.Extensions.Localization.Abstractions/LocalizedString.cs b/src/Microsoft.Extensions.Localization.Abstractions/LocalizedString.cs index 3779cd6942..d119f4fb1f 100644 --- a/src/Microsoft.Extensions.Localization.Abstractions/LocalizedString.cs +++ b/src/Microsoft.Extensions.Localization.Abstractions/LocalizedString.cs @@ -25,7 +25,7 @@ namespace Microsoft.Extensions.Localization /// /// The name of the string in the resource it was loaded from. /// The actual string. - /// Whether the string was found in a resource. Set this to false to indicate an alternate string value was used. + /// Whether the string was not found in a resource. Set this to true to indicate an alternate string value was used. public LocalizedString(string name, string value, bool resourceNotFound) { if (name == null) @@ -59,7 +59,7 @@ namespace Microsoft.Extensions.Localization public string Value { get; } /// - /// Whether the string was found in a resource. If false, an alternate string value was used. + /// Whether the string was not found in a resource. If true, an alternate string value was used. /// public bool ResourceNotFound { get; }