Skip to content

Commit

Permalink
feat(IGenericApi.ResolveAsync): recursive defaults true #100
Browse files Browse the repository at this point in the history
  • Loading branch information
richardschneider committed Aug 17, 2019
1 parent 6f5ef80 commit 5bb6dcf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/CoreApi/IGenericApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public interface IGenericApi
/// The name to resolve.
/// </param>
/// <param name="recursive">
/// Resolve until the result is an IPFS name. Defaults to <b>false</b>.
/// Resolve until the result is an IPFS name. Defaults to <b>true</b>.
/// </param>
/// <param name="cancel">
/// Is used to stop the task. When cancelled, the <see cref="TaskCanceledException"/> is raised.
Expand All @@ -67,7 +67,7 @@ public interface IGenericApi
/// </remarks>
Task<string> ResolveAsync(
string name,
bool recursive = false,
bool recursive = true,
CancellationToken cancel = default(CancellationToken)
);

Expand Down

0 comments on commit 5bb6dcf

Please sign in to comment.