1
0
mirror of https://github.com/ruanyf/es6tutorial.git synced 2025-05-26 03:32:20 +00:00

Merge pull request #68 from lmk123/patch-3

function.md 中一处示例的单引号写错了
This commit is contained in:
Ruan YiFeng 2015-07-23 21:09:19 +08:00
commit b952e7e008

View File

@ -497,7 +497,7 @@ const full = ({ first, last }) => first + ' ' + last;
// 等同于
function full( person ){
return person.first + + person.name;
return person.first + ' ' + person.name;
}
```