diff --git a/src/CoreApi/IGenericApi.cs b/src/CoreApi/IGenericApi.cs
index 9bf7c17..588e9d7 100644
--- a/src/CoreApi/IGenericApi.cs
+++ b/src/CoreApi/IGenericApi.cs
@@ -23,14 +23,26 @@ public interface IGenericApi
/// Is used to stop the task. When cancelled, the is raised.
///
///
- /// Information on the peer node.
+ /// A task that represents the asynchronous operation. The task's value is
+ /// the information.
///
Task IdAsync(MultiHash peer = null, CancellationToken cancel = default(CancellationToken));
///
/// Get the version information.
///
+ ///
+ /// A task that represents the asynchronous operation. The task's value is
+ /// a of values.
+ ///
Task> VersionAsync(CancellationToken cancel = default(CancellationToken));
+ ///
+ /// Stop the IPFS peer.
+ ///
+ ///
+ /// A task that represents the asynchronous operation.
+ ///
+ Task ShutdownAsync();
}
}