Skip to content

Commit 8f30244

Browse files
fix spelling and english syntax error
1 parent cfd896e commit 8f30244

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

www/en/modules/ROOT/pages/event-sources.adoc

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33

44
== User Interface
55

6-
The first source of events you come across when starting with {lv} are the events generated by the UI when a user of your application use the mouse or the keybard.
6+
The first source of events you come across when starting with {lv} is the events generated by the UI when a user of your application uses the mouse or the keyboard.
77

8-
The {es} is the way to detect the event and execute the appropriate caode.
8+
The {es} is the way to detect the event and execute the appropriate code.
99

10-
NOTE: Before the introduction of the {es} (a long time ago), LabVIEW developpers had to periodically poll the controls to detect interactions with the {ui} 😓.
10+
NOTE: Before the introduction of the {es} (a long time ago), LabVIEW developers had to periodically poll controls to detect interactions with the {ui} 😓.
1111

1212
Example code: *01a - Event Sources - User Interface.vi*
1313

@@ -20,11 +20,11 @@ image::04-event-sources-ui-dg.png[]
2020
== User Events a.k.a Custom Events
2121

2222
[quote,John Medland. MLUG October 2020]
23-
User Events, the worst named feature in {lv}
23+
User Events, the worst-named feature in {lv}
2424

2525
Behind this name, you'll find the way to create and generate events programmatically.
2626

27-
NOTE: This source of events is the corner stones of many event driven architectures. The https://www.dqmh.org[DQMH framework] is probably one of the most popular framework based on the {lv} user event feature.
27+
NOTE: This source of events is the cornerstone of many event-driven architectures. The https://www.dqmh.org[DQMH framework] is probably one of the most popular frameworks based on the {lv} user event feature.
2828

2929
Example code: *01b - Event Sources - Custom Events.vi*
3030

@@ -37,11 +37,11 @@ image::06-event-sources-user-event-dg.png[]
3737
== Event Callback
3838

3939
This source of event doesn't involve the use of an {es}.
40-
Once registred to an event the Callback VI is executed each time the event occurs.
40+
Once registered to an event, the Callback VI is executed each time the event occurs.
4141

42-
NOTE: This kind of event breaks the usal data flow we are used to
42+
NOTE: This kind of event breaks the usual data flow we are used to
4343

44-
// List examples of situation where event callback can be useful
44+
// List examples of situations wherethe event callback can be useful
4545

4646
Example code: *01c - Event Sources - Event Callback.vi*
4747

@@ -56,11 +56,11 @@ image::09-event-sources-callback-vi.png[]
5656

5757
== Daqmx
5858

59-
This source of event is problably the less known.
59+
This source of the event is probably the least known.
6060
With it, you can handle acquistion event in the {es}.
61-
It makes straigtforward the use of the other sources of events in the loop that handle the acquistion.
61+
It makes the use of other event sources in the loop that handle acquisition straightforward.
6262

63-
IMPORTANT: This example requieres the NI Daqmx driver to be executed.
63+
IMPORTANT: This example requires the NI Daqmx driver to be executed.
6464

6565
Example code: *01d - Event Sources - Daqmx Event.vi*
6666

0 commit comments

Comments
 (0)