@@ -91,15 +91,15 @@ public abstract class TaskOrchestrationContext
91
91
/// to not include any sensitive data in activity inputs or outputs. It's also recommended to not use large payloads
92
92
/// for activity inputs and outputs, which can result in expensive serialization and network utilization. For data
93
93
/// 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
95
95
/// implementation.
96
96
/// </para>
97
97
/// </remarks>
98
98
/// <param name="name">The name of the activity to call.</param>
99
99
/// <param name="input">The serializable input to pass to the activity.</param>
100
100
/// <param name="options">Additional options that control the execution and processing of the activity.</param>
101
101
/// <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>
103
103
/// <exception cref="InvalidOperationException">
104
104
/// Thrown if the calling thread is anything other than the main orchestrator thread.
105
105
/// </exception>
@@ -293,7 +293,7 @@ public abstract Task<TResult> CallSubOrchestratorAsync<TResult>(
293
293
/// Thrown if the calling thread is anything other than the main orchestrator thread.
294
294
/// </exception>
295
295
/// <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
297
297
/// <see cref="TaskFailedException.FailureDetails"/> property.
298
298
/// </exception>
299
299
public Task CallSubOrchestratorAsync (
0 commit comments