aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDaniel Balla <dballa@inf.u-szeged.hu>2017-09-28 06:20:18 +0200
committerZoltan Herczeg <zherczeg.u-szeged@partner.samsung.com>2017-09-28 06:20:18 +0200
commite527e41bacad86619f9336acc60a3204b8af7d32 (patch)
treee7a05f63318841d83f0890e217e37e2d8b54c64e /docs
parent8a5bfd2279fcfafa68086b57ab1a65822ae0a0c9 (diff)
Fix typo in the debugger documentation (#2027)
The old function name was used in one occurrence. JerryScript-DCO-1.0-Signed-off-by: Daniel Balla dballa@inf.u-szeged.hu
Diffstat (limited to 'docs')
-rw-r--r--docs/07.DEBUGGER.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/07.DEBUGGER.md b/docs/07.DEBUGGER.md
index 6cfe6940..3249d027 100644
--- a/docs/07.DEBUGGER.md
+++ b/docs/07.DEBUGGER.md
@@ -335,9 +335,9 @@ int main ()
jerry_value_t run_result;
jerry_debugger_wait_for_source_status_t receive_status;
- receive_status = jerry_debugger_wait_and_run_client_source (wait_for_source_callback,
- NULL,
- &run_result);
+ receive_status = jerry_debugger_wait_for_client_source (wait_for_source_callback,
+ NULL,
+ &run_result);
jerry_release_value (run_result);
}