Skip to content

Commit ec4a171

Browse files
authored
(#1) Fix warnings in build. (#6)
1 parent 385bf2a commit ec4a171

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: src/CommunityToolkit.Datasync.Client/Query/IODataQuery.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public interface IODataQuery<T> : IODataLinqMethods<T>
3333
/// <summary>
3434
/// Returns the OData query string for this query.
3535
/// </summary>
36-
/// <param name="includeParamters">If <c>true</c>, include the HTTP parameters in the call.</param>
36+
/// <param name="includeParameters">If <c>true</c>, include the HTTP parameters in the call.</param>
3737
/// <returns>The OData query string representing this query.</returns>
3838
/// <exception cref="NotSupportedException">If the query cannot be represented as an OData query.</exception>
3939
string ToODataString(bool includeParameters = true);

Diff for: src/CommunityToolkit.Datasync.Client/Table/RemoteDatasetException.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ public RemoteDatasetException() : base()
1919
}
2020

2121
/// <inheritdoc />
22-
public RemoteDatasetException(string? message) : base(message)
22+
public RemoteDatasetException(string message) : base(message)
2323
{
2424
}
2525

2626
/// <inheritdoc />
27-
public RemoteDatasetException(string? message, Exception? innerException) : base(message, innerException)
27+
public RemoteDatasetException(string message, Exception innerException) : base(message, innerException)
2828
{
2929
}
3030

0 commit comments

Comments
 (0)