Skip to content

Commit

Permalink
Fix XML documentation of Comparator.Contains/NotContains
Browse files Browse the repository at this point in the history
  • Loading branch information
adams85 committed Jul 25, 2023
1 parent e7f6be4 commit c58cb24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ConfigCatClient/Models/Comparator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ public enum Comparator : byte
NotIn = 1,

/// <summary>
/// Does the comparison value contain the comparison attribute as a substring?
/// Is the comparison value contained by the comparison attribute as a substring?
/// </summary>
Contains = 2,

/// <summary>
/// Does the comparison value not contain the comparison attribute as a substring?
/// Is the comparison value not contained by the comparison attribute as a substring?
/// </summary>
NotContains = 3,

Expand Down

0 comments on commit c58cb24

Please sign in to comment.