Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit 2ea3f4e

Browse files
committed
docs(lifecycle-hooks): make it easier to get to call sequence
Per Ben Lesh suggestion. Also converts away from "we"
1 parent b478aaf commit 2ea3f4e

File tree

2 files changed

+125
-127
lines changed

2 files changed

+125
-127
lines changed

public/docs/_examples/lifecycle-hooks/ts/app/peek-a-boo.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export class PeekABoo implements OnInit {
2121
// implement OnInit's `ngOnInit` method
2222
ngOnInit() { this.logIt(`OnInit`); }
2323

24-
protected logIt(msg: string) {
24+
logIt(msg: string) {
2525
this.logger.log(`#${nextId++} ${msg}`);
2626
}
2727
}

0 commit comments

Comments
 (0)