Skip to content

Commit

Permalink
Typo's.
Browse files Browse the repository at this point in the history
  • Loading branch information
Corniel committed Feb 23, 2024
1 parent 53c8e42 commit e51ef59
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Qowaiv.Diagnostics.Contracts/EmptyTypeAttribute.cs
Expand Up @@ -4,6 +4,6 @@
[Conditional("CONTRACTS_FULL")]
public abstract class EmptyTypeAttribute(string justification) : Attribute

Check warning on line 5 in src/Qowaiv.Diagnostics.Contracts/EmptyTypeAttribute.cs

View workflow job for this annotation

GitHub Actions / Build

Specify AttributeUsage on 'EmptyTypeAttribute'. (https://rules.sonarsource.com/csharp/RSPEC-3993)

Check warning on line 5 in src/Qowaiv.Diagnostics.Contracts/EmptyTypeAttribute.cs

View workflow job for this annotation

GitHub Actions / Build

Specify AttributeUsage on 'EmptyTypeAttribute'. (https://rules.sonarsource.com/csharp/RSPEC-3993)

Check warning on line 5 in src/Qowaiv.Diagnostics.Contracts/EmptyTypeAttribute.cs

View workflow job for this annotation

GitHub Actions / Build

Specify AttributeUsage on 'EmptyTypeAttribute'. (https://rules.sonarsource.com/csharp/RSPEC-3993)
{
/// <summary>THe justification of this decoration.</summary>
/// <summary>The justification of this decoration.</summary>
public string Justification { get; } = justification;
}
2 changes: 1 addition & 1 deletion src/Qowaiv.Diagnostics.Contracts/ImpureAttribute.cs
Expand Up @@ -5,6 +5,6 @@
[Conditional("CONTRACTS_FULL")]
public class ImpureAttribute(string? justification = null) : Attribute
{
/// <summary>THe justification of this decoration.</summary>
/// <summary>The justification of this decoration.</summary>
public string? Justification { get; init; } = justification;
}
2 changes: 1 addition & 1 deletion src/Qowaiv.Diagnostics.Contracts/InheritableAttribute.cs
Expand Up @@ -5,6 +5,6 @@
[Conditional("CONTRACTS_FULL")]
public class InheritableAttribute(string? justification = null) : Attribute
{
/// <summary>THe justification of this decoration.</summary>
/// <summary>The justification of this decoration.</summary>
public string? Justification { get; init; } = justification;
}
2 changes: 1 addition & 1 deletion src/Qowaiv.Diagnostics.Contracts/MutableAttribute.cs
Expand Up @@ -5,6 +5,6 @@
[Conditional("CONTRACTS_FULL")]
public sealed class MutableAttribute(string? justification = null) : Attribute
{
/// <summary>THe justification of this decoration.</summary>
/// <summary>The justification of this decoration.</summary>
public string? Justification { get; init; } = justification;
}

0 comments on commit e51ef59

Please sign in to comment.