Skip to content

Commit 27c81ac

Browse files
committed
Merge pull request johnpapa#564 from rmdias/master
Closing example functions
2 parents 704dc2f + 6d4e2af commit 27c81ac

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -433,6 +433,7 @@ While this guide explains the *what*, *why* and *how*, I find it helpful to see
433433
};
434434
vm.sessions = [];
435435
vm.title = 'Sessions';
436+
}
436437
```
437438

438439
```javascript
@@ -459,6 +460,7 @@ While this guide explains the *what*, *why* and *how*, I find it helpful to see
459460
function search() {
460461
/* */
461462
}
463+
}
462464
```
463465

464466
![Controller Using "Above the Fold"](https://raw.githubusercontent.com/johnpapa/angular-styleguide/master/assets/above-the-fold-1.png)
@@ -483,6 +485,7 @@ While this guide explains the *what*, *why* and *how*, I find it helpful to see
483485
vm.search = search;
484486
vm.sessions = [];
485487
vm.title = 'Sessions';
488+
}
486489
```
487490

488491
```javascript
@@ -495,6 +498,7 @@ While this guide explains the *what*, *why* and *how*, I find it helpful to see
495498
vm.search = search;
496499
vm.sessions = [];
497500
vm.title = 'Sessions';
501+
}
498502
```
499503

500504
### Function Declarations to Hide Implementation Details

0 commit comments

Comments
 (0)