Skip to content

Commit 246cbfc

Browse files
committed
Fix small typo
1 parent 9a6b76d commit 246cbfc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dispatch/queue.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -173,12 +173,12 @@ DISPATCH_DECL_SUBCLASS(dispatch_queue_main, dispatch_queue_serial);
173173
*
174174
* @discussion
175175
* Dispatch concurrent queues are lightweight objects to which regular and
176-
* barrier workitems may be submited. Barrier workitems are invoked in
176+
* barrier workitems may be submitted. Barrier workitems are invoked in
177177
* exclusion of any other kind of workitem in FIFO order.
178178
*
179179
* Regular workitems can be invoked concurrently for the same concurrent queue,
180180
* in any order. However, regular workitems will not be invoked before any
181-
* barrier workitem submited ahead of them has been invoked.
181+
* barrier workitem submitted ahead of them has been invoked.
182182
*
183183
* In other words, if a serial queue is equivalent to a mutex in the Dispatch
184184
* world, a concurrent queue is equivalent to a reader-writer lock, where

0 commit comments

Comments
 (0)