Skip to content

Commit c6a55f4

Browse files
Trim trailing whitespace.
1 parent 8e1d961 commit c6a55f4

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

QueryBuilder/Clauses/LimitClause.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ namespace SqlKata
33
public class LimitClause : AbstractClause
44
{
55
private int _limit;
6-
6+
77
public int Limit
88
{
99
get => _limit;

QueryBuilder/Helper.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,13 +158,13 @@ public static IEnumerable<string> Repeat(this string str, int count)
158158
{
159159
return Enumerable.Repeat(str, count);
160160
}
161-
161+
162162
public static string ReplaceIdentifierUnlessEscaped(this string input, string escapeCharacter, string identifier, string newIdentifier)
163163
{
164164
//Replace standard, non-escaped identifiers first
165165
var nonEscapedRegex = new Regex($@"(?<!{Regex.Escape(escapeCharacter)}){Regex.Escape(identifier)}");
166166
var nonEscapedReplace = nonEscapedRegex.Replace(input, newIdentifier);
167-
167+
168168
//Then replace escaped identifiers, by just removing the escape character
169169
var escapedRegex = new Regex($@"{Regex.Escape(escapeCharacter)}{Regex.Escape(identifier)}");
170170
return escapedRegex.Replace(nonEscapedReplace, identifier);

QueryBuilder/Query.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ public Query IncludeMany(string relationName, Query query, string foreignKey = n
321321
{
322322
return Include(relationName, query, foreignKey, localKey, isMany: true);
323323
}
324-
324+
325325
private static readonly ConcurrentDictionary<Type, PropertyInfo[]> CacheDictionaryProperties = new ConcurrentDictionary<Type, PropertyInfo[]>();
326326

327327
/// <summary>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313

1414

15-
> **WE ARE NOT ACCEPTING NEW COMPILERS, if you want to add your own compiler, we recommend to create a separate repo like SqlKata-Oracle**
15+
> **WE ARE NOT ACCEPTING NEW COMPILERS, if you want to add your own compiler, we recommend to create a separate repo like SqlKata-Oracle**
1616
1717
Follow <a href="https://twitter.com/intent/tweet?text=Wow:&url=https%3A%2F%2Fgithub.com%2Fsqlkata%2Fquerybuilder"><img alt="Twitter" src="https://img.shields.io/twitter/url?label=%40ahmadmuzavi&style=social&url=https%3A%2F%2Ftwitter.com%2Fahmadmuzavi"></a> for the latest updates about SqlKata.
1818

0 commit comments

Comments
 (0)