Skip to content

Commit b78d044

Browse files
committed
regenerate
1 parent a967b55 commit b78d044

File tree

151 files changed

+304
-304
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

151 files changed

+304
-304
lines changed

content/ember/v5/deprecate-import-A-from-ember.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ since: 5.10.0
55
---
66

77

8-
Previously, A could be accessed via the `Ember` import:
8+
Previously, `A` could be accessed via the `Ember` import:
99
```js
1010
import Ember from 'ember';
1111

1212
Ember.A
1313
```
1414

15-
If needed, A can be imported:
15+
If needed, `A` can be imported:
1616
```js
1717
import { A } from '@ember/array';
1818
```

content/ember/v5/deprecate-import-ActionHandler-from-ember.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ since: 5.10.0
55
---
66

77

8-
Previously, ActionHandler could be accessed via the `Ember` import:
8+
Previously, `ActionHandler` could be accessed via the `Ember` import:
99
```js
1010
import Ember from 'ember';
1111

1212
Ember.ActionHandler
1313
```
14-
ActionHandler is also private.
14+
`ActionHandler` is also private.
1515

1616
There is no replacement for this API.

content/ember/v5/deprecate-import-Application-from-ember.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ since: 5.10.0
55
---
66

77

8-
Previously, Application could be accessed via the `Ember` import:
8+
Previously, `Application` could be accessed via the `Ember` import:
99
```js
1010
import Ember from 'ember';
1111

1212
Ember.Application
1313
```
1414

15-
If needed, Application can be imported:
15+
If needed, `Application` can be imported:
1616
```js
1717
import Application from '@ember/application';
1818
```

content/ember/v5/deprecate-import-ApplicationInstance-from-ember.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ since: 5.10.0
55
---
66

77

8-
Previously, ApplicationInstance could be accessed via the `Ember` import:
8+
Previously, `ApplicationInstance` could be accessed via the `Ember` import:
99
```js
1010
import Ember from 'ember';
1111

1212
Ember.ApplicationInstance
1313
```
1414

15-
If needed, ApplicationInstance can be imported:
15+
If needed, `ApplicationInstance` can be imported:
1616
```js
1717
import ApplicationInstance from '@ember/application/instance';
1818
```

content/ember/v5/deprecate-import-Array-from-ember.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ since: 5.10.0
55
---
66

77

8-
Previously, Array could be accessed via the `Ember` import:
8+
Previously, `Array` could be accessed via the `Ember` import:
99
```js
1010
import Ember from 'ember';
1111

1212
Ember.Array
1313
```
1414

15-
If needed, Array can be imported:
15+
If needed, `Array` can be imported:
1616
```js
1717
import Array from '@ember/array';
1818
```

content/ember/v5/deprecate-import-ArrayProxy-from-ember.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ since: 5.10.0
55
---
66

77

8-
Previously, ArrayProxy could be accessed via the `Ember` import:
8+
Previously, `ArrayProxy` could be accessed via the `Ember` import:
99
```js
1010
import Ember from 'ember';
1111

1212
Ember.ArrayProxy
1313
```
1414

15-
If needed, ArrayProxy can be imported:
15+
If needed, `ArrayProxy` can be imported:
1616
```js
1717
import ArrayProxy from '@ember/array/proxy';
1818
```

content/ember/v5/deprecate-import-BOOTED-from-ember.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ since: 5.10.0
55
---
66

77

8-
Previously, BOOTED could be accessed via the `Ember` import:
8+
Previously, `BOOTED` could be accessed via the `Ember` import:
99
```js
1010
import Ember from 'ember';
1111

1212
Ember.BOOTED
1313
```
14-
BOOTED is also private.
14+
`BOOTED` is also private.
1515

1616
There is no replacement for this API.

content/ember/v5/deprecate-import-Comparable-from-ember.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ since: 5.10.0
55
---
66

77

8-
Previously, Comparable could be accessed via the `Ember` import:
8+
Previously, `Comparable` could be accessed via the `Ember` import:
99
```js
1010
import Ember from 'ember';
1111

1212
Ember.Comparable
1313
```
14-
Comparable is also private.
14+
`Comparable` is also private.
1515

1616
There is no replacement for this API.

content/ember/v5/deprecate-import-Component-from-ember.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ since: 5.10.0
55
---
66

77

8-
Previously, Component could be accessed via the `Ember` import:
8+
Previously, `Component` could be accessed via the `Ember` import:
99
```js
1010
import Ember from 'ember';
1111

1212
Ember.Component
1313
```
1414

15-
If needed, Component can be imported:
15+
If needed, `Component` can be imported:
1616
```js
1717
import Component from '@ember/component';
1818
```

content/ember/v5/deprecate-import-ComputedProperty-from-ember.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ since: 5.10.0
55
---
66

77

8-
Previously, ComputedProperty could be accessed via the `Ember` import:
8+
Previously, `ComputedProperty` could be accessed via the `Ember` import:
99
```js
1010
import Ember from 'ember';
1111

0 commit comments

Comments
 (0)