Typos a/an (#13819)

This commit is contained in:
Дилян Палаузов
2022-12-02 14:07:31 +02:00
committed by GitHub
parent e979be4911
commit 6c1373f7c2
121 changed files with 167 additions and 167 deletions

View File

@@ -234,7 +234,7 @@ public class PS4PacketHandler {
/**
* Tell the PS4 that we want to get info about the OnScreenKeyboard.
*
* @return A OSKStartPacket.
* @return An OSKStartPacket.
*/
static ByteBuffer makeOSKStartPacket() {
return newPacketForEncryption(8, PS4Command.OSK_START_REQ);
@@ -244,7 +244,7 @@ public class PS4PacketHandler {
* Send text to the OSK on the PS4. Replaces all the text as it is now.
*
* @param text
* @return A OSKStringChangePacket.
* @return An OSKStringChangePacket.
*/
static ByteBuffer makeOSKStringChangePacket(String text) {
byte[] chars = text.getBytes(StandardCharsets.UTF_16LE);
@@ -259,7 +259,7 @@ public class PS4PacketHandler {
}
/**
* Parses out the text from a OSKStringChange-packet.
* Parses out the text from an OSKStringChange-packet.
*
* @param buffer The received packet from the PS4.
* @return The text in the packet.