From: Dmitry Volyntsev Date: Wed, 29 Jul 2020 17:00:23 +0000 (+0000) Subject: Fixed njs_prop_handler_t inline documentation. X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=d1d13d179860bb518b5301eed579e3b8e4554707;p=njs.git Fixed njs_prop_handler_t inline documentation. --- diff --git a/src/njs.h b/src/njs.h index 26e78ff4..88cacfb4 100644 --- a/src/njs.h +++ b/src/njs.h @@ -73,9 +73,9 @@ extern const njs_value_t njs_value_undefined; * * njs_prop_handler_t is expected to return: * NJS_OK - handler executed successfully; - * NJS_ERROR - some error, vm->retval contains appropriate exception; - * NJS_DECLINED - handler was applied to inappropriate object, vm->retval - * contains undefined value. + * NJS_DECLINED - handler was applied to inappropriate object, retval + * contains undefined value; + * NJS_ERROR - some error, vm->retval contains appropriate exception. */ typedef njs_int_t (*njs_prop_handler_t) (njs_vm_t *vm, njs_object_prop_t *prop, njs_value_t *value, njs_value_t *setval, njs_value_t *retval);