From 9ef7ca0a6fb8ac6f8594c410ca3ef42a26de61e0 Mon Sep 17 00:00:00 2001 From: Karim Gawish Date: Thu, 16 Mar 2017 09:02:48 +0100 Subject: [PATCH] Grammatical Mistake fix. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5ca06d1..aa13b3b 100644 --- a/README.md +++ b/README.md @@ -144,7 +144,7 @@ export const CommonModule = angular ### Low-level modules -Low-level modules are individual component modules that contain the logic for each feature block. These will each define a module, to be imported to a higher-level module, such as a component or common module, an example below. Always remember to add the `.name` suffix to each `export` when creating a _new_ module, not when referencing one. You'll noticed routing definitions also exist here, we'll come onto this in later chapters in this guide. +Low-level modules are individual component modules that contain the logic for each feature block. These will each define a module, to be imported to a higher-level module, such as a component or common module, an example below. Always remember to add the `.name` suffix to each `export` when creating a _new_ module, not when referencing one. You'll notice routing definitions also exist here, we'll come onto this in later chapters in this guide. ```js import angular from 'angular';