From a967907cf523bac752b3fa9ea6363767d8855162 Mon Sep 17 00:00:00 2001 From: Alessandro Zanardi Date: Thu, 10 Oct 2013 17:53:10 -0700 Subject: [PATCH] fix(docs): fixed typo in readme --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 067fe25d1..dfe72f7cc 100644 --- a/readme.md +++ b/readme.md @@ -189,7 +189,7 @@ angular.module('myMod') A project can mix CoffeScript and JavaScript files. ### Minification Safe -By default, generators produce unannotated code. Without annotations, AngularJS's DI system will break when minified. Typically, these annotations the make minification safe are added automatically at build-time, after application files are concatenated, but before they are minified. By providing the `--minsafe` option, the code generated will out-of-the-box be ready for minification. The trade-off is between amount of boilerplate, and build process complexity. +By default, generators produce unannotated code. Without annotations, AngularJS's DI system will break when minified. Typically, these annotations that make minification safe are added automatically at build-time, after application files are concatenated, but before they are minified. By providing the `--minsafe` option, the code generated will out-of-the-box be ready for minification. The trade-off is between amount of boilerplate, and build process complexity. #### Example ```bash