Skip to content

Commit fdf5039

Browse files
committed
Fixed "Doesn't support Russian" to "Doesn't support Unicode"
1 parent 2b75fee commit fdf5039

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

AdvancedSharpAdbClient/DeviceCommands/DeviceClient.Async.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ public async Task SendKeyEventAsync(string key, CancellationToken cancellationTo
442442
}
443443

444444
/// <summary>
445-
/// Send text to device asynchronously. Doesn't support Russian.
445+
/// Send text to device asynchronously. Doesn't support Unicode.
446446
/// </summary>
447447
/// <param name="text">The text to send.</param>
448448
/// <param name="cancellationToken">A <see cref="CancellationToken"/> which can be used to cancel the asynchronous operation.</param>

AdvancedSharpAdbClient/DeviceCommands/DeviceClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ public void SendKeyEvent(string key)
382382
}
383383

384384
/// <summary>
385-
/// Send text to device. Doesn't support Russian.
385+
/// Send text to device. Doesn't support Unicode.
386386
/// </summary>
387387
/// <param name="text">The text to send.</param>
388388
public void SendText(string text)

AdvancedSharpAdbClient/DeviceCommands/DeviceExtensions.Async.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ public static Task SendKeyEventAsync(this IAdbClient client, DeviceData device,
149149
new DeviceClient(client, device).SendKeyEventAsync(key, cancellationToken);
150150

151151
/// <summary>
152-
/// Asynchronously send text to device. Doesn't support Russian.
152+
/// Asynchronously send text to device. Doesn't support Unicode.
153153
/// </summary>
154154
/// <param name="client">The <see cref="IAdbClient"/> to use when executing the command.</param>
155155
/// <param name="device">The device on which to run the command.</param>

AdvancedSharpAdbClient/DeviceCommands/DeviceExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ public static void SendKeyEvent(this IAdbClient client, DeviceData device, strin
122122
new DeviceClient(client, device).SendKeyEvent(key);
123123

124124
/// <summary>
125-
/// Send text to device. Doesn't support Russian.
125+
/// Send text to device. Doesn't support Unicode.
126126
/// </summary>
127127
/// <param name="client">An instance of a class that implements the <see cref="IAdbClient"/> interface.</param>
128128
/// <param name="device">The device on which to clear the input text.</param>

AdvancedSharpAdbClient/DeviceCommands/Models/Element.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ public void Click()
252252
}
253253

254254
/// <summary>
255-
/// Send text to device. Doesn't support Russian.
255+
/// Send text to device. Doesn't support Unicode.
256256
/// </summary>
257257
/// <param name="text">The text to send.</param>
258258
public void SendText(string text)
@@ -313,7 +313,7 @@ public async Task ClickAsync(CancellationToken cancellationToken = default)
313313
}
314314

315315
/// <summary>
316-
/// Asynchronously send text to device. Doesn't support Russian.
316+
/// Asynchronously send text to device. Doesn't support Unicode.
317317
/// </summary>
318318
/// <param name="text">The text to send.</param>
319319
/// <param name="cancellationToken">A <see cref="CancellationToken"/> which can be used to cancel the asynchronous operation.</param>

0 commit comments

Comments
 (0)