Skip to content

Commit b818a09

Browse files
committed
Fix spaced comments
1 parent db70b64 commit b818a09

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,23 +100,23 @@ class Router extends React.Component {
100100
this.onWillPush(route);
101101
});
102102
aspect.after(this.refs.navigator, 'push', (route) => {
103-
//temporary hack to fix bug in aspect library
103+
// temporary hack to fix bug in aspect library
104104
this.onDidPush(route || arguments[1]);
105105
});
106106

107107
aspect.before(this.refs.navigator, 'resetTo', (route) => {
108108
this.onWillResetTo(route);
109109
});
110110
aspect.after(this.refs.navigator, 'resetTo', (route) => {
111-
//temporary hack to fix bug in aspect library
111+
// temporary hack to fix bug in aspect library
112112
this.onDidResetTo(route || arguments[1]);
113113
});
114114

115115
aspect.before(this.refs.navigator, 'replace', (route) => {
116116
this.onWillReplace(route);
117117
});
118118
aspect.after(this.refs.navigator, 'replace', (route) => {
119-
//temporary hack to fix bug in aspect library
119+
// temporary hack to fix bug in aspect library
120120
this.onDidReplace(route || arguments[1]);
121121
});
122122

0 commit comments

Comments
 (0)