Merge pull request #904 from lc-soft/patch-1

docs(proxy): add spaces around the operator
This commit is contained in:
Ruan YiFeng
2019-09-10 12:12:48 +08:00
committed by GitHub
+1 -1
View File
@@ -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);
}
});
}