diff --git a/renderdoc/android/jdwp_connection.cpp b/renderdoc/android/jdwp_connection.cpp index eddd1dd15..b52b02906 100644 --- a/renderdoc/android/jdwp_connection.cpp +++ b/renderdoc/android/jdwp_connection.cpp @@ -26,7 +26,7 @@ namespace JDWP { -// short helper functions to read/write vectors - always preceeded by an int length +// short helper functions to read/write vectors - always preceded by an int length template void ReadVector(CommandData &data, rdcarray &vec, std::function process) @@ -89,7 +89,7 @@ bool Connection::SendReceive(Command &cmd) CommandSet sentSet = cmd.commandset; byte sentCmd = cmd.command; - // send the command, and recieve the reply back into the same object. + // send the command, and receive the reply back into the same object. // save the auto-generated ID for this command so we can compare it to the reply - we expect a // synchronous reply, no other commands in the way. uint32_t id = cmd.Send(writer);