From 71759446a4c86ddc0304594f4f4866f2124433e9 Mon Sep 17 00:00:00 2001 From: alsotang Date: Wed, 28 Jan 2015 16:15:21 +0800 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c9f480d..60093b1 100644 --- a/README.md +++ b/README.md @@ -142,7 +142,7 @@ require(["eventproxy"], function (EventProxy) { ```js var ep = new EventProxy(); -ep.all('tpl', 'data', function (tpl, data) { +ep.all('tpl', 'data', function (tpl, data) { // or ep.all(['tpl', 'data'], function (tpl, data) {}) // 在所有指定的事件触发后,将会被调用执行 // 参数对应各自的事件名 });