diff xml/en/docs/http/ngx_http_js_module.xml @ 3000:7eafa16bb07c

Replaced "delete" to "del" in js_shared_dict_zone.
author Yaroslav Zhuravlev <yar@nginx.com>
date Wed, 16 Aug 2023 12:12:22 +0100
parents 98bd95a5ac70
children 3184864bbb3f
line wrap: on
line diff
--- a/xml/en/docs/http/ngx_http_js_module.xml
+++ b/xml/en/docs/http/ngx_http_js_module.xml
@@ -9,7 +9,7 @@
 <module name="Module ngx_http_js_module"
         link="/en/docs/http/ngx_http_js_module.html"
         lang="en"
-        rev="39">
+        rev="40">
 
 <section id="summary">
 
@@ -681,7 +681,7 @@ example.js:
         r.return(200, ngx.shared.foo.set(r.args.key, r.args.value));
     }
 
-    function delete(r) {
+    function del(r) {
         r.return(200, ngx.shared.bar.delete(r.args.key));
     }