Skip to content

Commit

Permalink
Merge pull request #156 from pdekkers/main
Browse files Browse the repository at this point in the history
Fixed typos in comments
  • Loading branch information
brockallen committed Dec 28, 2022
2 parents 6d185d8 + a33f668 commit df03ebe
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
namespace Duende.Bff;

/// <summary>
/// This attribute indicates that the BFF midleware will ignore the antiforgery header checks.
/// This attribute indicates that the BFF middleware will ignore the antiforgery header checks.
/// </summary>
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method)]
public class BffApiSkipAntiforgeryAttribute : Attribute, IBffApiSkipAntiforgry
{
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
namespace Duende.Bff;

/// <summary>
/// This attribute indicates that the BFF midleware will not override the HTTP response status code.
/// This attribute indicates that the BFF middleware will not override the HTTP response status code.
/// </summary>
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method)]
public class BffApiSkipResponseHandlingAttribute : Attribute, IBffApiSkipResponseHandling
{
}
}
2 changes: 1 addition & 1 deletion src/Duende.Bff/EndpointProcessing/IBffApiSkipAntiforgry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
namespace Duende.Bff;

/// <summary>
/// Indicates that the BFF midleware will ignore the antiforgery header checks.
/// Indicates that the BFF middleware will ignore the antiforgery header checks.
/// </summary>
public interface IBffApiSkipAntiforgry
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
namespace Duende.Bff;

/// <summary>
/// Indicates that the BFF midleware will not override the HTTP response status code.
/// Indicates that the BFF middleware will not override the HTTP response status code.
/// </summary>
public interface IBffApiSkipResponseHandling
{
Expand Down

0 comments on commit df03ebe

Please sign in to comment.