From fcbd2587a25114ec68b2ff79ed5f5337c6e3e769 Mon Sep 17 00:00:00 2001 From: zhangjg Date: Sat, 10 Oct 2015 14:03:50 +0800 Subject: [PATCH] Update proxy.md There is a spell error. --- docs/proxy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/proxy.md b/docs/proxy.md index 30a753e..adf7239 100644 --- a/docs/proxy.md +++ b/docs/proxy.md @@ -823,7 +823,7 @@ Reflect.get(obj, "foo", wrapper); 等同于`delete obj[name]`。 -**(5)Refl2ect.construct(target, args)** +**(5)Reflect.construct(target, args)** 等同于`new target(...args)`,这提供了一种不使用new,来调用构造函数的方法。