fix typos in debugger code (#2219)

JerryScript-DCO-1.0-Signed-off-by: Geoff Gustafson geoff@linux.intel.com
This commit is contained in:
Geoff Gustafson
2018-02-22 15:22:16 -08:00
committed by yichoi
parent 51e3c4455a
commit d990832569
3 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -28,12 +28,12 @@
#define JERRY_DEBUGGER_MAX_BUFFER_SIZE 128
/**
* Maximum number of bytes can be received in a single message.
* Maximum number of bytes that can be sent in a single message.
*/
#define JERRY_DEBUGGER_MAX_SEND_SIZE (JERRY_DEBUGGER_MAX_BUFFER_SIZE - 1)
/**
* Maximum number of bytes can be received in a single message.
* Maximum number of bytes that can be received in a single message.
*/
#define JERRY_DEBUGGER_MAX_RECEIVE_SIZE (JERRY_DEBUGGER_MAX_BUFFER_SIZE - 6)