Skip to content

Commit 5ab697f

Browse files
committed
Corrected error line 38 tabsController.js
Changed first letter of the first word in comment on line 38 to a capital letter to be consistent with other comments found in the file.
1 parent adea328 commit 5ab697f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

js/angular/controller/tabsController.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ function($scope, $element, $ionicHistory) {
3535
self.deselect(tab);
3636
//Try to select a new tab if we're removing a tab
3737
if (self.tabs.length === 1) {
38-
//do nothing if there are no other tabs to select
38+
//Do nothing if there are no other tabs to select
3939
} else {
4040
//Select previous tab if it's the last tab, else select next tab
4141
var newTabIndex = tabIndex === self.tabs.length - 1 ? tabIndex - 1 : tabIndex + 1;

0 commit comments

Comments
 (0)