Skip to content

Commit

Permalink
De-gender comments
Browse files Browse the repository at this point in the history
No need for comments to assume male developer gender
  • Loading branch information
mattbrailsford authored Apr 2, 2022
1 parent 10536d8 commit 56cba7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion QueryBuilder/Base.Where.cs
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ public Q OrWhereNotBetween<T>(string column, T lower, T higher)
public Q WhereIn<T>(string column, IEnumerable<T> values)
{

// If the developer has passed a string most probably he wants List<string>
// If the developer has passed a string they most likely want a List<string>
// since string is considered as List<char>
if (values is string)
{
Expand Down

0 comments on commit 56cba7e

Please sign in to comment.