Skip to content

Commit

Permalink
Merge pull request sqlkata#563 from mattbrailsford/patch-1
Browse files Browse the repository at this point in the history
De-gender comments
  • Loading branch information
ahmad-moussawi authored Apr 2, 2022
2 parents 10536d8 + 1bf0850 commit be679a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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
2 changes: 1 addition & 1 deletion QueryBuilder/Query.Having.cs
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ public Query OrHavingNotBetween<T>(string column, T lower, T higher)

public Query HavingIn<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 be679a9

Please sign in to comment.