docs(core): adjust typo in workspace generator docs (#6508)

This commit is contained in:
Juri Strumpflohner 2021-07-26 17:15:22 +02:00 committed by GitHub
parent eb942b143c
commit d88b604a72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -101,7 +101,7 @@ If you want the generated file or folder name to contain variable values, use `_
## EJS Syntax Quickstart
The EJS syntax can do much more than replace variable names with values. Here are some common techniques.
The [EJS syntax](https://ejs.co/) can do much more than replace variable names with values. Here are some common techniques.
1. Pass a function into the template:
@ -140,7 +140,7 @@ This is the short version.
```typescript
// typescript file
generateFiles(tree, joinPathFragments(__dirname, './files'), libraryRoot, {
shortVerstion: false,
shortVersion: false,
numRepetitions: 3,
});
```