diff --git a/packages/angular_devkit/schematics/README.md b/packages/angular_devkit/schematics/README.md index 4ef2d45c4eb5..7fce70c8b80d 100644 --- a/packages/angular_devkit/schematics/README.md +++ b/packages/angular_devkit/schematics/README.md @@ -124,7 +124,7 @@ The system operates on placeholders defined inside files or their paths as loade | Placeholder | Description | | ------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | | `<%= expression %>` | Replaced with the result of the call of the given expression. This only supports direct expressions, no structural (for/if/...) JavaScript. | -| `<%- expression %>` | Same as above, but the value of the result will be escaped for HTML when inserted (i.e. replacing '<' with '<') | +| `<%- expression %>` | Same as above, but the value of the result will be escaped for HTML when inserted (i.e. replacing '<' with '\<') | | `<% inline code %>` | Inserts the given code into the template structure, allowing to insert structural JavaScript. | | `<%# text %>` | A comment, which gets entirely dropped. |