From: Dmitry Volyntsev Date: Thu, 17 Jan 2019 13:12:46 +0000 (+0300) Subject: Fixed comments "try" instructions. X-Git-Tag: 0.2.8~71 X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=f4557407b834d91747864010c7a430ae4afcca18;p=njs.git Fixed comments "try" instructions. --- 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