Skip to content

Commit 0444427

Browse files
kgautreauxjenweber
authored andcommitted
Several updates for clarity/typos. (ember-learn#606)
I have not vetted the entire document, but I didn't see any other obvious errors on cursory exam.
1 parent 5206745 commit 0444427

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

guides/release/state-management/tracked-properties.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ Hello, Jen Weber!
3838
By default, Ember assumes that none of the values that are rendered will ever
3939
change. In some cases this is clearly true - for instance, the punctuation in
4040
the template will always be the same, so Ember doesn't need to do anything to
41-
update it. These or static, state-less parts of the template. In other cases,
42-
like `this.greeting` or `@name` argument, that's less clear. It seems like
41+
update it. These are static, state-less parts of the template. In other cases,
42+
like `this.greeting` or `@name` argument, that's less clear. It appears
4343
`language` might be something we want to update, and if we do, then `greeting`
4444
should probably change, right? At the least, we should _check_ to see if it
4545
should change.
@@ -203,7 +203,7 @@ export default class Hello extends Component {
203203
}
204204
```
205205

206-
if `supportedLanguages` changes here, it `greeting` will update as well! This
206+
if `supportedLanguages` changes here, `greeting` will update as well! This
207207
code could likely be refactored to use getters, but in cases where a function or
208208
method makes more sense, tracked properties will still work.
209209

0 commit comments

Comments
 (0)