docs: fix typo in outputs.md for migrations section (#60055)

PR Close #60055
This commit is contained in:
Evgeniy Aksyonov
2025-02-21 19:41:11 +01:00
committed by kirjs
parent 3edc494ea2
commit 5ecceda5cb
@@ -80,7 +80,7 @@ ng generate @angular/core:output-migration --path src/app/sub-folder
## Exceptions
In some cases, the migration will not touch the code.
One of these excpetions is the case where the event is used with a `pipe()` method.
One of these exceptions is the case where the event is used with a `pipe()` method.
The following code won't be migrated:
```typescript
@@ -93,4 +93,4 @@ export class MyDialogComponent {
this.close.pipe();
}
}
```
```