From ed507026cbd999fba1238178cc8b1fdbb7d79fa0 Mon Sep 17 00:00:00 2001 From: Zhicheng Wang Date: Sun, 20 Aug 2017 15:05:23 +0800 Subject: [PATCH] fix: typo --- aio/content/guide/lifecycle-hooks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/lifecycle-hooks.md b/aio/content/guide/lifecycle-hooks.md index 6d3e13678d..92463dacbb 100644 --- a/aio/content/guide/lifecycle-hooks.md +++ b/aio/content/guide/lifecycle-hooks.md @@ -263,7 +263,7 @@ Angular instead inspects directive and component classes and calls the hook meth Angular finds and calls methods like `ngOnInit()`, with or without the interfaces. Angular会去检测我们的指令和组件的类,一旦发现钩子方法被定义了,就调用它们。 -Agnular会找到并调用像`ngOnInit()`这样的钩子方法,有没有接口无所谓。 +Angular会找到并调用像`ngOnInit()`这样的钩子方法,有没有接口无所谓。 Nonetheless, it's good practice to add interfaces to TypeScript directive classes in order to benefit from strong typing and editor tooling.