Skip to content

Commit abd41bd

Browse files
authored
Fix typos in XML docs (#109)
1 parent 215f904 commit abd41bd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Abstractions/TaskOrchestrationContext.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,15 +91,15 @@ public abstract class TaskOrchestrationContext
9191
/// to not include any sensitive data in activity inputs or outputs. It's also recommended to not use large payloads
9292
/// for activity inputs and outputs, which can result in expensive serialization and network utilization. For data
9393
/// that cannot be cheaply or safely persisted to storage, it's recommended to instead pass <em>references</em>
94-
/// (for example, a URL to a storage blog) to the data and have activities fetch the data directly as part of their
94+
/// (for example, a URL to a storage blob) to the data and have activities fetch the data directly as part of their
9595
/// implementation.
9696
/// </para>
9797
/// </remarks>
9898
/// <param name="name">The name of the activity to call.</param>
9999
/// <param name="input">The serializable input to pass to the activity.</param>
100100
/// <param name="options">Additional options that control the execution and processing of the activity.</param>
101101
/// <returns>A task that completes when the activity completes or fails.</returns>
102-
/// <exception cref="ArgumentException">The specified orchestrator does not exist.</exception>
102+
/// <exception cref="ArgumentException">The specified activity does not exist.</exception>
103103
/// <exception cref="InvalidOperationException">
104104
/// Thrown if the calling thread is anything other than the main orchestrator thread.
105105
/// </exception>
@@ -293,7 +293,7 @@ public abstract Task<TResult> CallSubOrchestratorAsync<TResult>(
293293
/// Thrown if the calling thread is anything other than the main orchestrator thread.
294294
/// </exception>
295295
/// <exception cref="TaskFailedException">
296-
/// The activity failed with an unhandled exception. The details of the failure can be found in the
296+
/// The sub-orchestration failed with an unhandled exception. The details of the failure can be found in the
297297
/// <see cref="TaskFailedException.FailureDetails"/> property.
298298
/// </exception>
299299
public Task CallSubOrchestratorAsync(

0 commit comments

Comments
 (0)