Skip to content

Commit 3a6e840

Browse files
committed
Improve grammar
1 parent 6c6cece commit 3a6e840

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Breaking-Changes.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ These changes list where implementation differs between versions as the spec and
88

99
TypeScript's built-in `.d.ts` library (`lib.d.ts` and family) is now partially generated from Web IDL files from the DOM specification. As a result some vendor-specific types have been removed.
1010

11-
<details><summary>Click here to the full list of removed types:</summary><p>
11+
<details><summary>Click here to read the full list of removed types:</summary><p>
1212

1313
* `CanvasRenderingContext2D.mozImageSmoothingEnabled`
1414
* `CanvasRenderingContext2D.msFillRule`
@@ -167,9 +167,9 @@ TypeScript's built-in `.d.ts` library (`lib.d.ts` and family) is now partially g
167167

168168
### Recommendations:
169169

170-
If your run-time guaranteed to have some of these names available at run-time (e.g. IE-only app) add the declarations locally in your project, e.g.:
170+
If your run-time guarantees that some of these names are available at run-time (e.g. for an IE-only app), add the declarations locally in your project, e.g.:
171171

172-
To Add `Element.msMatchesSelector` back, add the following to a local `dom.ie.d.ts`
172+
For `Element.msMatchesSelector`, add the following to a local `dom.ie.d.ts`
173173

174174
```ts
175175
interface Element {

0 commit comments

Comments
 (0)