Skip to content

Commit 5b3723e

Browse files
committed
resolve PR comments
1 parent f15be12 commit 5b3723e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

dotnet/InkRecognition/wpf-app/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ products:
77
- azure
88
---
99

10-
# Ink Recogizer Cognitive Service C# WPF Sample
10+
# Ink Recognizer Cognitive Service C# WPF Sample
1111

1212
![Build passing](https://img.shields.io/badge/build-passing-brightgreen.svg) ![License](https://img.shields.io/badge/license-MIT-green.svg)
1313

@@ -54,8 +54,8 @@ This sample provides the following features:
5454
### Run the sample
5555

5656
* To debug the sample and then run it, select **Debug > Start Debugging**. To run the sample without debugging, select **Debug > Start Without Debugging**.
57-
* Write down something one the upper rectangle of the app
58-
* After one second of inactivity, the ink will be recognized and the result will be visible in the lower rectangle of the app
57+
* Write down something on the upper region of the app
58+
* After one second of inactivity, the ink will be recognized and the result will be visible in the lower region of the app
5959

6060
## Resources
6161

dotnet/InkRecognition/wpf-app/src/MainWindow.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public partial class MainWindow : Window
2525
public MainWindow()
2626
{
2727
InitializeComponent();
28-
28+
// Replace the subscriptionKey string value with your valid subscription key
2929
const string subscriptionKey = "[YOUR SUBSCRIPTION KEY]";
3030
const string endpoint = "https://api.cognitive.microsoft.com";
3131
const string inkRecognitionUrl = "/inkrecognizer/v1.0-preview/recognize";

dotnet/InkRecognition/wpf-app/src/Services/Ink/InkRecognizer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class InkRecognizer
1717

1818
HttpManager httpManager;
1919

20-
// Default DPI setting. 96.0 is Windows default DPI
20+
// Default DPI setting to use when device displayInfo is not set
2121
float dpiX = 96.0f;
2222
float dpiY = 96.0f;
2323

0 commit comments

Comments
 (0)