Skip to content

Commit 9611433

Browse files
committed
Marked nullable parameters in ICouchDatabase
1 parent e8e0953 commit 9611433

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CouchDB.Driver/ICouchDatabase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ Task<ChangesFeedResponse<TSource>> GetChangesAsync(ChangesFeedOptions? options =
222222
/// <param name="cancellationToken">A cancellation token to stop receiving changes.</param>
223223
/// <returns>A IAsyncEnumerable that represents the asynchronous operation. The task result contains the feed change.</returns>
224224
IAsyncEnumerable<ChangesFeedResponseResult<TSource>> GetContinuousChangesAsync(
225-
ChangesFeedOptions options, ChangesFeedFilter filter,
225+
ChangesFeedOptions? options, ChangesFeedFilter? filter,
226226
CancellationToken cancellationToken);
227227

228228
/// <summary>

0 commit comments

Comments
 (0)