docs: added complete path to the spec file (#29621)

PR Close #29621
This commit is contained in:
Amit Chaurasia 2019-03-31 19:49:23 +05:30 committed by Jason Aden
parent ab4be7bf80
commit 6759aa68dc
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ Create the directive class file in a terminal window with the CLI command [`ng g
ng generate directive highlight
</code-example>
The CLI creates `src/app/highlight.directive.ts`, a corresponding test file (`.../spec.ts`, and _declares_ the directive class in the root `AppModule`.
The CLI creates `src/app/highlight.directive.ts`, a corresponding test file `src/app/highlight.directive.spec.ts`, and _declares_ the directive class in the root `AppModule`.
<div class="alert is-helpful">