Skip to content

Commit 17f9f71

Browse files
committed
Fix nit #103
1 parent 228b23d commit 17f9f71

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Imageflow.Server/Licensing.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public string EnforcementMethodMessage
8181
return options.EnforcementMethod switch
8282
{
8383
EnforceLicenseWith.RedDotWatermark =>
84-
"You are using EnforceLicenseWith.RedDotWatermark. If there is a licensing error, an red dot will be drawn on the bottom-right corner of each image. This can be set to EnforceLicenseWith.Http402Error instead (valuable if you are externally caching or storing result images.)",
84+
"You are using EnforceLicenseWith.RedDotWatermark. If there is a licensing error, a red dot will be drawn on the bottom-right corner of each image. This can be set to EnforceLicenseWith.Http402Error instead (valuable if you are externally caching or storing result images.)",
8585
EnforceLicenseWith.Http422Error =>
8686
"You are using EnforceLicenseWith.Http422Error. If there is a licensing error, HTTP status code 422 will be returned instead of serving the image. This can also be set to EnforceLicenseWith.RedDotWatermark.",
8787
EnforceLicenseWith.Http402Error =>

src/Imazen.Common/Licensing/ILicenseConfig.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ internal interface ILicenseConfig
5050
///<code>
5151
/// string EnforcementMethodMessage =&gt; LicenseError == LicenseErrorAction.Http402
5252
/// ? $"You are using &lt;licenses licenseError='{LicenseError}'>. If there is a licensing error, an exception will be thrown (with HTTP status code 402). This can also be set to '{LicenseErrorAction.Watermark}'."
53-
///: $"You are using &lt;licenses licenseError='{LicenseError}'>. If there is a licensing error, an red dot will be drawn on the bottom-right corner of each image. This can be set to '{LicenseErrorAction.Http402}' instead (valuable if you are storing results)."
53+
///: $"You are using &lt;licenses licenseError='{LicenseError}'>. If there is a licensing error, a red dot will be drawn on the bottom-right corner of each image. This can be set to '{LicenseErrorAction.Http402}' instead (valuable if you are storing results)."
5454
///;</code>
5555
/// </summary>
5656
string EnforcementMethodMessage { get; }

0 commit comments

Comments
 (0)