docs(ivy): remove duplicated words in architecture doc (#27471)

PR Close #27471
This commit is contained in:
赵正阳 2018-12-05 10:13:49 +08:00 committed by Andrew Kushnir
parent cfb41452ce
commit ddd8cd0573
1 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ GreetComponent = tslib_1.__decorate([
], GreetComponent);
```
which translates the decorator into a form that is is executed at runtime. A `.d.ts` file is also emitted that might look something like
which translates the decorator into a form that is executed at runtime. A `.d.ts` file is also emitted that might look something like
```ts
export class GreetComponent {
@ -146,7 +146,7 @@ TypeScript supports the following extension points to alter its output. You can,
1. Modify the TypeScript source it sees (`CompilerHost.getSourceFile`)
2. Alter the list of transforms (`CustomTransformers`)
3. Intercept the the output before it is written (`WriteFileCallback`)
3. Intercept the output before it is written (`WriteFileCallback`)
It is not recommended to alter the source code as this complicates the managing of source maps, makes it difficult to support incremental parsing, and is not supported by TypeScript's language service plug-in model.