From f193eec5590f6a7529b849f9f6a4711bd6558c00 Mon Sep 17 00:00:00 2001 From: Katherine Hambley Date: Sun, 6 Feb 2022 19:30:01 -0600 Subject: [PATCH] Fixed a typo in the comments line 168 comment is in the ReadFileLocal method which is reading text from a file not a Url. --- dotnet/ComputerVision/ComputerVisionQuickstart.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotnet/ComputerVision/ComputerVisionQuickstart.cs b/dotnet/ComputerVision/ComputerVisionQuickstart.cs index afe0866c..7134f946 100644 --- a/dotnet/ComputerVision/ComputerVisionQuickstart.cs +++ b/dotnet/ComputerVision/ComputerVisionQuickstart.cs @@ -165,7 +165,7 @@ public static async Task ReadFileLocal(ComputerVisionClient client, string local Console.WriteLine("READ FILE FROM LOCAL"); Console.WriteLine(); - // Read text from URL + // Read text from file var textHeaders = await client.ReadInStreamAsync(File.OpenRead(localFile)); // After the request, get the operation location (operation ID) string operationLocation = textHeaders.OperationLocation;