Skip to content

Commit 5960370

Browse files
committed
fix(@angular/cli): add missing space after period in warning text
1 parent 2e4925b commit 5960370

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/angular/cli/src/command-builder/schematics-command-module.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ export abstract class SchematicsCommandModule
181181
if (property['format'] === 'path' && !property['$default']) {
182182
(options as Record<string, unknown>)['path'] = workingDir || undefined;
183183
this.context.logger.warn(
184-
`The 'path' option in '${schematic?.schema}' is using deprecated behaviour.` +
184+
`The 'path' option in '${schematic?.schema}' is using deprecated behaviour. ` +
185185
`'workingDirectory' smart default provider should be used instead.`,
186186
);
187187
}

0 commit comments

Comments
 (0)