Skip to content

Commit c77b83e

Browse files
committed
style(decorator): add missing spaces
1 parent 813e0fe commit c77b83e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

templates/javascript-min/decorator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
angular.module('<%= _.camelize(appname) %>App')
44
.config( ['$provide', function ($provide) {
5-
$provide.decorator('<%= _.camelize(name) %>', function($delegate){
5+
$provide.decorator('<%= _.camelize(name) %>', function ($delegate) {
66
// decorate the $delegate
77
return $delegate;
88
});

templates/javascript/decorator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
angular.module('<%= _.camelize(appname) %>App')
44
.config(function ($provide) {
5-
$provide.decorator('<%= _.camelize(name) %>', function($delegate){
5+
$provide.decorator('<%= _.camelize(name) %>', function ($delegate) {
66
// decorate the $delegate
77
return $delegate;
88
});

0 commit comments

Comments
 (0)