Minor space change to be in line with coding style everywhere else

This commit is contained in:
Andreas
2015-03-25 17:09:58 +00:00
parent cb05e2f85b
commit b6534bec7d
+1 -1
View File
@@ -49,7 +49,7 @@ __Factories__
A `ReactElement`-factory is simply a function that generates a `ReactElement` with a particular `type` property. React has a built-in helper for you to create factories. It's effectively just:
```javascript
function createFactory(type){
function createFactory(type) {
return React.createElement.bind(null, type);
}
```