From 176fe9dcd650905b904029a21ae8963c3fae4719 Mon Sep 17 00:00:00 2001 From: Liu Date: Fri, 6 Sep 2019 18:11:51 +0800 Subject: [PATCH] docs(proxy): add spaces around the operator --- docs/proxy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/proxy.md b/docs/proxy.md index a9b1d4d..0ec65c9 100644 --- a/docs/proxy.md +++ b/docs/proxy.md @@ -1131,7 +1131,7 @@ service.employees().then(json => { function createWebService(baseUrl) { return new Proxy({}, { get(target, propKey, receiver) { - return () => httpGet(baseUrl+'/' + propKey); + return () => httpGet(baseUrl + '/' + propKey); } }); }