diff mbox

[PATCHv3,3/4] doc: user-guide: fixing other typos

Message ID 1456160578-8312-4-git-send-email-christophe.milard@linaro.org
State New
Headers show

Commit Message

Christophe Milard Feb. 22, 2016, 5:02 p.m. UTC
Signed-off-by: Christophe Milard <christophe.milard@linaro.org>
Reviewed-and-tested-by: Bill Fischofer <bill.fischofer@linaro.org>
---
 doc/users-guide/users-guide.adoc | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
diff mbox

Patch

diff --git a/doc/users-guide/users-guide.adoc b/doc/users-guide/users-guide.adoc
index 494c8ab..8cd82fa 100644
--- a/doc/users-guide/users-guide.adoc
+++ b/doc/users-guide/users-guide.adoc
@@ -694,8 +694,8 @@  odp_event_t ev = odp_queue_deq(poll_q1);
 int rc = odp_queue_enq(poll_q2, ev);
 ----
 
-The key distinction is that dequeueing events from POLL queues is an
-application responsibility while dequeueing events from SCHED queues is the
+The key distinction is that dequeuing events from POLL queues is an
+application responsibility while dequeuing events from SCHED queues is the
 responsibility of the ODP scheduler.
 
 .Operations on SCHED queues
@@ -721,7 +721,7 @@  while (1) {
 }
 ----
 
-With scheduled queues, events are sent to a queue, and the the sender chooses
+With scheduled queues, events are sent to a queue, and the sender chooses
 a queue based on the service it needs. The sender does not need to know
 which ODP thread (on which core) or hardware accelerator will process
 the event, but all the events on a queue are eventually scheduled and processed.
@@ -804,7 +804,7 @@  atomic queues may impair scaling.
 
 === Ordered Queues
 Ordered queues provide the best of both worlds by providing the inherent
-scaleabilty of parallel queues, with the easy synchronization of atomic
+scalability of parallel queues, with the easy synchronization of atomic
 queues.
 
 .Ordered Queue Scheduling