aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrent Morrow2013-04-07 00:17:24 -0700
committerIgor Minar2013-04-11 14:57:03 -0700
commit35b02226cafe235380d8dd7934f4d2c02ff8547e (patch)
tree306b95b0701ab58b2b9adb54d19ea16e1a92bf75
parent814feaa2ab95a18f060181244ccec61359947830 (diff)
downloadangular.js-35b02226cafe235380d8dd7934f4d2c02ff8547e.tar.bz2
docs(guide/concepts): fix typo
An event is a user **interaction**, timer event, or network event (response from a server).
-rw-r--r--docs/content/guide/concepts.ngdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/guide/concepts.ngdoc b/docs/content/guide/concepts.ngdoc
index 14026a48..768fe392 100644
--- a/docs/content/guide/concepts.ngdoc
+++ b/docs/content/guide/concepts.ngdoc
@@ -61,7 +61,7 @@ This is how we get the ball rolling (refer to the diagram and example below):
The diagram and the example below describe how Angular interacts with the browser's event loop.
- 1. The browser's event-loop waits for an event to arrive. An event is a user interactions, timer event,
+ 1. The browser's event-loop waits for an event to arrive. An event is a user interaction, timer event,
or network event (response from a server).
2. The event's callback gets executed. This enters the JavaScript context. The callback can
modify the DOM structure.