Skip to content

Commit 864bf47

Browse files
committed
Fix spaces
1 parent 8d6a09d commit 864bf47

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

FlurlGraphQL.Querying/GraphQL/GraphQLQueryResults.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace FlurlGraphQL.Querying
1010
public class GraphQLQueryResults<TResult> : IReadOnlyList<TResult>, IGraphQLQueryResults<TResult>
1111
where TResult : class
1212
{
13-
public GraphQLQueryResults(IList<TResult> results = null, IList < GraphQLError> errors = null)
13+
public GraphQLQueryResults(IList<TResult> results = null, IList<GraphQLError> errors = null)
1414
{
1515
//The Results should be null safe as an empty list if no results exist.
1616
Results = results ?? new List<TResult>();

FlurlGraphQL.Tests/FlurlGraphQLQueryingPaginatedTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public async Task TestSingleQueryCursorPagingEdgeResultsAndNestedEdgeResultsAsyn
8181
{
8282
edges {
8383
cursor
84-
node
84+
node
8585
{
8686
personalIdentifier
8787
name

0 commit comments

Comments
 (0)