From f4557407b834d91747864010c7a430ae4afcca18 Mon Sep 17 00:00:00 2001 From: Dmitry Volyntsev Date: Thu, 17 Jan 2019 16:12:46 +0300 Subject: [PATCH] Fixed comments "try" instructions. --- njs/njs_vm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/njs/njs_vm.c b/njs/njs_vm.c index fce24a97..80649b0a 100644 --- a/njs/njs_vm.c +++ b/njs/njs_vm.c @@ -2386,7 +2386,7 @@ njs_vmcode_try_break(njs_vm_t *vm, njs_value_t *exit_value, /* - * njs_vmcode_try_break() sets exit_value to INVALID -1, and jumps to + * njs_vmcode_try_continue() sets exit_value to INVALID -1, and jumps to * the nearest try_end block. The exit_value is checked by njs_vmcode_finally(). */ @@ -2401,7 +2401,7 @@ njs_vmcode_try_continue(njs_vm_t *vm, njs_value_t *exit_value, /* * njs_vmcode_try_return() saves a return value to use it later by - * njs_vmcode_finally(), and jumps to the nearest try_end block. + * njs_vmcode_finally(), and jumps to the nearest try_break block. */ nxt_noinline njs_ret_t -- 2.47.3