From 536d2c408c0e70b7a57a3c7da5592ce01eb1cf02 Mon Sep 17 00:00:00 2001 From: Lemon_zhang <897418436@qq.com> Date: Wed, 4 Apr 2018 11:29:25 +0800 Subject: [PATCH] Update destructuring.md --- docs/destructuring.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/destructuring.md b/docs/destructuring.md index 5f69ec7..fcb5e14 100644 --- a/docs/destructuring.md +++ b/docs/destructuring.md @@ -630,7 +630,7 @@ jQuery.ajax = function (url, { crossDomain = false, global = true, // ... more config -}) { +} = {}) { // ... do stuff }; ```