Skip to content

Commit 76820db

Browse files
committed
nitpick: make run loop description consistent
1 parent fa6aeab commit 76820db

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

guides/release/state-management/patterns-for-state.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ Once the data loads, it updates the state, and data flows downward like normal
210210

211211
Background events are similar to data loading. Something is scheduled to happen
212212
in the background, like a `setTimeout` or `setInterval`, a callback scheduled in
213-
the [runloop][2], or connection is opened to something that communicates
213+
the [run loop][2], or connection is opened to something that communicates
214214
directly with the app, like a websocket or a web worker. When these events occur
215215
and update state, they trigger a rerender just like data loading.
216216

guides/release/upgrading/editions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ want to:
114114
object model.
115115
- **Curly component invocation**, eliminating the ambiguity in templates between
116116
values and DOM creation.
117-
- **The runloop**. App developers should never have to write code that interacts
118-
with the Ember runloop, even in tests.
117+
- **The run loop**. App developers should never have to write code that interacts
118+
with the Ember run loop, even in tests.
119119
- **Ember "inner HTML" components**, and the confusing JavaScript API used to
120120
configure a component’s root element, like `tagName`, `classNameBindings`,
121121
etc.

0 commit comments

Comments
 (0)