docs: fix typo in Schematics guide (#36328)

Fixing typo in schematics-for-libraries.md
PR Close #36328
This commit is contained in:
Alexey Okhrimenko 2020-03-30 20:57:06 +03:00 committed by Alex Rickabaugh
parent 80c68583d1
commit 2510e7dad6
1 changed files with 1 additions and 1 deletions

View File

@ -249,7 +249,7 @@ A `Rule` can use external template files, transform them, and return another `Ru
* The `url()` method reads source files from your filesystem, relative to the schematic.
* The `applyTemplates()` method receives an argument of methods and properties you want make available to the schematic template and the schematic filenames. It returns a `Rule`. This is where you define the `classify()` and `dasherize()` methods, and the `name` property.
* The `classify()` method takes a value and returns the value in title case. For example, if the provided name is `my service`, it is returned as `MyService`
* The `dasherize()` method takes a value and returns the value in dashed and lowercase. For example, if the provided name is MyService, it is returned as `my-service.
* The `dasherize()` method takes a value and returns the value in dashed and lowercase. For example, if the provided name is MyService, it is returned as `my-service`.
* The `move` method moves the provided source files to their destination when the schematic is applied.
1. Finally, the rule factory must return a rule.