@@ -38,8 +38,8 @@ Hello, Jen Weber!
38
38
By default, Ember assumes that none of the values that are rendered will ever
39
39
change. In some cases this is clearly true - for instance, the punctuation in
40
40
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
43
43
` language ` might be something we want to update, and if we do, then ` greeting `
44
44
should probably change, right? At the least, we should _ check_ to see if it
45
45
should change.
@@ -203,7 +203,7 @@ export default class Hello extends Component {
203
203
}
204
204
```
205
205
206
- if ` supportedLanguages ` changes here, it ` greeting ` will update as well! This
206
+ if ` supportedLanguages ` changes here, ` greeting ` will update as well! This
207
207
code could likely be refactored to use getters, but in cases where a function or
208
208
method makes more sense, tracked properties will still work.
209
209
0 commit comments