The statement that lldb-server can handle
decimal and hex numbers is misleading.
(it can only handle hex with 0x prefix)
Mentioning non decimal numbers at all
is just creating more confusion for anyone
who tries to use them with lldb-server.
Differential Revision: https://reviews.llvm.org/D89383
//
// COMPATIBILITY
// The gdb-remote serial protocol documentation says that numbers
-// in "vFile:" packets should be hexidecimal. Instead lldb uses
-// decimal for the number of bytes and offset.
-// lldb-server can process either format.
+// in "vFile:" packets should be hexadecimal. Instead lldb uses
+// decimal.
//----------------------------------------------------------------------
//
// COMPATIBILITY
// The gdb-remote serial protocol documentation says that numbers
-// in "vFile:" packets should be hexidecimal. Instead lldb uses
-// decimal for the offset. lldb-server can process either format.
+// in "vFile:" packets should be hexadecimal. Instead lldb uses
+// decimal.