Skip to content

Commit a3b70c2

Browse files
daPhie79Arlodotexe
authored andcommitted
Fix DagResolveOutput so that Dag.ResolveAsync works.
1 parent fa36f50 commit a3b70c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/CoreApi/DagResolveOutput.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/// <summary>
44
/// The result of a DAG resolve operation.
55
/// </summary>
6-
/// <param name="Id">The cid of the resolved dag path.</param>
6+
/// <param name="Cid">The cid of the resolved dag path.</param>
77
/// <param name="RemPath">Unknown usage. See <see href="https://github.com/ipfs/kubo/blob/f5b855550ca73acf5dd3a2001e2a7192cab7c249/core/commands/dag/dag.go#L54"/></param>
8-
public record DagResolveOutput(DagCid Id, string RemPath);
8+
public record DagResolveOutput(DagCid Cid, string RemPath);
99
}

0 commit comments

Comments
 (0)