Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix spelling mistakes. #41998

Merged
merged 1 commit into from
Feb 14, 2024
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public partial class ImageAnalysisClient
/// <summary> Performs a single Image Analysis operation. </summary>
/// <param name="imageData"> The image to be analyzed. </param>
/// <param name="visualFeatures"> A flags enumeration indicating what visual feature types to return. Valid visual feature types include: Tags, Caption, DenseCaptions, Objects, Read, SmartCrops, People. At least one visual feature must be specified for Image Analysis. </param>
/// <param name="options">A structure containg the per call analysis options.</param>
/// <param name="options">A structure containing the per call analysis options.</param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="imageData"/> is null. </exception>
[ForwardsClientCalls]
Expand All @@ -32,7 +32,7 @@ public virtual Task<Response<ImageAnalysisResult>> AnalyzeAsync(BinaryData image
/// <summary> Performs a single Image Analysis operation. </summary>
/// <param name="imageData"> The image to be analyzed. </param>
/// <param name="visualFeatures"> A flags enumeration indicating what visual feature types to return. Valid visual feature types include: Tags, Caption, DenseCaptions, Objects, Read, SmartCrops, People. At least one visual feature must be specified for Image Analysis. </param>
/// <param name="options">A structure containg the per call analysis options.</param>
/// <param name="options">A structure containing the per call analysis options.</param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="imageData"/> is null. </exception>
[ForwardsClientCalls]
Expand All @@ -42,7 +42,7 @@ public virtual Response<ImageAnalysisResult> Analyze(BinaryData imageData, Visua
/// <summary> Performs a single Image Analysis operation. </summary>
/// <param name="imageUri"> The image to be analyzed. </param>
/// <param name="visualFeatures"> A flags enumeration indicating what visual feature types to return. Valid visual feature types include: Tags, Caption, DenseCaptions, Objects, Read, SmartCrops, People. At least one visual feature must be specified for Image Analysis. </param>
/// <param name="options">A structure containg the per call analysis options.</param>
/// <param name="options">A structure containing the per call analysis options.</param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="imageUri"/> is null. </exception>
[ForwardsClientCalls]
Expand All @@ -52,7 +52,7 @@ public virtual async Task<Response<ImageAnalysisResult>> AnalyzeAsync(Uri imageU
/// <summary> Performs a single Image Analysis operation. </summary>
/// <param name="imageUri"> The image to be analyzed. </param>
/// <param name="visualFeatures"> A flags enumeration indicating what visual feature types to return. Valid visual feature types include: Tags, Caption, DenseCaptions, Objects, Read, SmartCrops, People. At least one visual feature must be specified for Image Analysis. </param>
/// <param name="options">A structure containg the per call analysis options.</param>
/// <param name="options">A structure containing the per call analysis options.</param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="imageUri"/> is null. </exception>
[ForwardsClientCalls]
Expand Down