Skip to content

Commit e49e94d

Browse files
committed
Fix space and commas
1 parent 406f03b commit e49e94d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ While this guide explains the *what*, *why* and *how*, I find it helpful to see
6262
/* avoid */
6363
angular
6464
.module('app', ['ngRoute'])
65-
.controller('SomeController' , SomeController)
66-
.factory('someFactory' , someFactory);
65+
.controller('SomeController', SomeController)
66+
.factory('someFactory', someFactory);
6767

6868
function SomeController() { }
6969

@@ -86,7 +86,7 @@ While this guide explains the *what*, *why* and *how*, I find it helpful to see
8686
// someController.js
8787
angular
8888
.module('app')
89-
.controller('SomeController' , SomeController);
89+
.controller('SomeController', SomeController);
9090

9191
function SomeController() { }
9292
```
@@ -97,7 +97,7 @@ While this guide explains the *what*, *why* and *how*, I find it helpful to see
9797
// someFactory.js
9898
angular
9999
.module('app')
100-
.factory('someFactory' , someFactory);
100+
.factory('someFactory', someFactory);
101101

102102
function someFactory() { }
103103
```
@@ -219,7 +219,7 @@ While this guide explains the *what*, *why* and *how*, I find it helpful to see
219219
```javascript
220220
/* avoid */
221221
var app = angular.module('app');
222-
app.controller('SomeController' , SomeController);
222+
app.controller('SomeController', SomeController);
223223

224224
function SomeController() { }
225225
```
@@ -228,7 +228,7 @@ While this guide explains the *what*, *why* and *how*, I find it helpful to see
228228
/* recommended */
229229
angular
230230
.module('app')
231-
.controller('SomeController' , SomeController);
231+
.controller('SomeController', SomeController);
232232

233233
function SomeController() { }
234234
```

0 commit comments

Comments
 (0)