From 2510e7dad6d583d9fa76369e53b88cd0e52f17b3 Mon Sep 17 00:00:00 2001 From: Alexey Okhrimenko Date: Mon, 30 Mar 2020 20:57:06 +0300 Subject: [PATCH] docs: fix typo in Schematics guide (#36328) Fixing typo in schematics-for-libraries.md PR Close #36328 --- aio/content/guide/schematics-for-libraries.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/schematics-for-libraries.md b/aio/content/guide/schematics-for-libraries.md index 5800099e2f..7b9e682a3d 100644 --- a/aio/content/guide/schematics-for-libraries.md +++ b/aio/content/guide/schematics-for-libraries.md @@ -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.