Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/AsyncDevice.tt
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ foreach (var registerMetadata in publicRegisters)
/// A <see cref="CancellationToken"/> which can be used to cancel the operation.
/// </param>
/// <returns>
/// A task that represents the asynchronous read operation. The <see cref="Task{TResult}.Result"/>
/// property contains the register payload.
/// A task that represents the asynchronous read operation. The task result contains
/// the register payload.
/// </returns>
public async Task<<#= interfaceType #>> Read<#= registerMetadata.Key #>Async(CancellationToken cancellationToken = default)
{
Expand All @@ -91,8 +91,8 @@ foreach (var registerMetadata in publicRegisters)
/// A <see cref="CancellationToken"/> which can be used to cancel the operation.
/// </param>
/// <returns>
/// A task that represents the asynchronous read operation. The <see cref="Task{TResult}.Result"/>
/// property contains the timestamped register payload.
/// A task that represents the asynchronous read operation. The task result contains
/// the timestamped register payload.
/// </returns>
public async Task<Timestamped<<#= interfaceType #>>> ReadTimestamped<#= registerMetadata.Key #>Async(CancellationToken cancellationToken = default)
{
Expand All @@ -107,7 +107,7 @@ foreach (var registerMetadata in publicRegisters)
/// <summary>
/// Asynchronously writes a value to the <see cref="<#= registerMetadata.Key #>"/> register.
/// </summary>
/// <param name="value">The value to be stored in the register.</param>
/// <param name="value">The value to write in the register.</param>
/// <param name="cancellationToken">
/// A <see cref="CancellationToken"/> which can be used to cancel the operation.
/// </param>
Expand Down
Loading
Loading