diff --git a/AdvancedSharpAdbClient/DeviceCommands/DeviceClient.Async.cs b/AdvancedSharpAdbClient/DeviceCommands/DeviceClient.Async.cs
index f9fe61b..257e327 100644
--- a/AdvancedSharpAdbClient/DeviceCommands/DeviceClient.Async.cs
+++ b/AdvancedSharpAdbClient/DeviceCommands/DeviceClient.Async.cs
@@ -442,7 +442,7 @@ public async Task SendKeyEventAsync(string key, CancellationToken cancellationTo
}
///
- /// Send text to device asynchronously. Doesn't support Russian.
+ /// Send text to device asynchronously. Doesn't support Unicode.
///
/// The text to send.
/// A which can be used to cancel the asynchronous operation.
diff --git a/AdvancedSharpAdbClient/DeviceCommands/DeviceClient.cs b/AdvancedSharpAdbClient/DeviceCommands/DeviceClient.cs
index 55a2f1a..f283173 100644
--- a/AdvancedSharpAdbClient/DeviceCommands/DeviceClient.cs
+++ b/AdvancedSharpAdbClient/DeviceCommands/DeviceClient.cs
@@ -382,7 +382,7 @@ public void SendKeyEvent(string key)
}
///
- /// Send text to device. Doesn't support Russian.
+ /// Send text to device. Doesn't support Unicode.
///
/// The text to send.
public void SendText(string text)
diff --git a/AdvancedSharpAdbClient/DeviceCommands/DeviceExtensions.Async.cs b/AdvancedSharpAdbClient/DeviceCommands/DeviceExtensions.Async.cs
index f9697be..601674d 100644
--- a/AdvancedSharpAdbClient/DeviceCommands/DeviceExtensions.Async.cs
+++ b/AdvancedSharpAdbClient/DeviceCommands/DeviceExtensions.Async.cs
@@ -149,7 +149,7 @@ public static Task SendKeyEventAsync(this IAdbClient client, DeviceData device,
new DeviceClient(client, device).SendKeyEventAsync(key, cancellationToken);
///
- /// Asynchronously send text to device. Doesn't support Russian.
+ /// Asynchronously send text to device. Doesn't support Unicode.
///
/// The to use when executing the command.
/// The device on which to run the command.
diff --git a/AdvancedSharpAdbClient/DeviceCommands/DeviceExtensions.cs b/AdvancedSharpAdbClient/DeviceCommands/DeviceExtensions.cs
index bdb7551..0a1ab7e 100644
--- a/AdvancedSharpAdbClient/DeviceCommands/DeviceExtensions.cs
+++ b/AdvancedSharpAdbClient/DeviceCommands/DeviceExtensions.cs
@@ -122,7 +122,7 @@ public static void SendKeyEvent(this IAdbClient client, DeviceData device, strin
new DeviceClient(client, device).SendKeyEvent(key);
///
- /// Send text to device. Doesn't support Russian.
+ /// Send text to device. Doesn't support Unicode.
///
/// An instance of a class that implements the interface.
/// The device on which to clear the input text.
diff --git a/AdvancedSharpAdbClient/DeviceCommands/Models/Element.cs b/AdvancedSharpAdbClient/DeviceCommands/Models/Element.cs
index ce3d772..86c9e4f 100644
--- a/AdvancedSharpAdbClient/DeviceCommands/Models/Element.cs
+++ b/AdvancedSharpAdbClient/DeviceCommands/Models/Element.cs
@@ -252,7 +252,7 @@ public void Click()
}
///
- /// Send text to device. Doesn't support Russian.
+ /// Send text to device. Doesn't support Unicode.
///
/// The text to send.
public void SendText(string text)
@@ -313,7 +313,7 @@ public async Task ClickAsync(CancellationToken cancellationToken = default)
}
///
- /// Asynchronously send text to device. Doesn't support Russian.
+ /// Asynchronously send text to device. Doesn't support Unicode.
///
/// The text to send.
/// A which can be used to cancel the asynchronous operation.