Skip to content

Commit be679a9

Browse files
Merge pull request #563 from mattbrailsford/patch-1
De-gender comments
2 parents 10536d8 + 1bf0850 commit be679a9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

QueryBuilder/Base.Where.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ public Q OrWhereNotBetween<T>(string column, T lower, T higher)
381381
public Q WhereIn<T>(string column, IEnumerable<T> values)
382382
{
383383

384-
// If the developer has passed a string most probably he wants List<string>
384+
// If the developer has passed a string they most likely want a List<string>
385385
// since string is considered as List<char>
386386
if (values is string)
387387
{

QueryBuilder/Query.Having.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ public Query OrHavingNotBetween<T>(string column, T lower, T higher)
360360

361361
public Query HavingIn<T>(string column, IEnumerable<T> values)
362362
{
363-
// If the developer has passed a string most probably he wants List<string>
363+
// If the developer has passed a string they most likely want a List<string>
364364
// since string is considered as List<char>
365365
if (values is string)
366366
{

0 commit comments

Comments
 (0)