Skip to content

Commit 7334378

Browse files
committed
Fix linting
1 parent ceaa2e0 commit 7334378

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.local.dic

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ instantiation
109109
Intellisense
110110
IntelliSense
111111
interop
112+
integrations
112113
interoperable
113114
invokable
114115
invokables
@@ -137,6 +138,7 @@ nav
137138
nav-bar
138139
Neovim
139140
NVDA
141+
nvim-treesitter
140142
onboarding
141143
Orca
142144
page-crafter
@@ -207,6 +209,7 @@ TalkBack
207209
teardown
208210
template-lifecycle-dom-and-modifiers
209211
templating
212+
TextMate
210213
todo
211214
todos
212215
tooltip
@@ -237,6 +240,7 @@ VM
237240
VoiceOver
238241
voilà
239242
Voilà
243+
vscode-glimmer-syntax
240244
websocket
241245
working-with-html-css-and-javascript
242246
yay

guides/release/components/template-tag-format.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export default class Avatar extends Component {
6262

6363
## Importing components, helpers, and modifiers
6464

65-
In Ember templates, **“invokables”** are things you can _invoke_ in a template. These include [components][], [helpers][], and [modifiers][]. In the template tag format, these invokables need to be imported before they can be used. This makes it easier to understand where values come from and what they do, as well as unlocks build optimizations.
65+
In Ember templates, **“invokables”** are things you can *invoke* in a template. These include [components][], [helpers][], and [modifiers][]. In the template tag format, these invokables need to be imported before they can be used. This makes it easier to understand where values come from and what they do, as well as unlocks build optimizations.
6666

6767
[components]: ../../../components/introducing-components/
6868
[helpers]: ../../../components/helper-functions/
@@ -189,11 +189,11 @@ import { Textarea } from '@ember/component';
189189

190190
#### Keywords
191191

192-
While most items should be imported into scope explicitly, some of the existing constructs in the language are unimportable and are available as keywords instead:
192+
While most items should be imported into scope explicitly, some of the existing constructs in the language are not importable and are available as keywords instead:
193193

194194
`action`, `debugger`, `each-in`, `each`, `has-block-params`, `has-block`, `hasBlock`, `if`, `in-element`, `let`, `link-to` (non-block form curly invocations), `loc`, `log`, `mount`, `mut`, `outlet`, `query-params`, `readonly`, `unbound`, `unless`, `with`, and `yield`
195195

196-
These keywords do not have to be imported into scope and will always be ambiently available.
196+
These keywords do not have to be imported into scope and will always be available.
197197

198198
<div class="cta">
199199
<div class="cta-note">

0 commit comments

Comments
 (0)