tevent_tutorial: Fix typos
authorVolker Lendecke <vl@samba.org>
Sun, 11 Sep 2016 07:28:35 +0000 (09:28 +0200)
committerJeremy Allison <jra@samba.org>
Thu, 15 Sep 2016 23:31:13 +0000 (01:31 +0200)
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
lib/tevent/doc/tevent_context.dox
lib/tevent/doc/tevent_queue.dox

index 1036d3c106dac68dcec5a98ffcb031fba0a546aa..39eb85eb47731cfdf9964b6c8d1b9f37e342f57c 100644 (file)
@@ -67,7 +67,7 @@ event again. There are 2 types of loop available for use in tevent library:
 <li>int tevent_loop_once()</li>
 </ul>
 
-Both of functions accept just one parametr (tevent context) and the only
+Both of functions accept just one parameter (tevent context) and the only
 difference lies in the fact that the first loop can theoretically last for ever
 but the second one will wait just for a single one event to catch and then the
 loop breaks and the program continue.
index fef98c81e061bc5b6276ce9037929767b2185700..9c247e5212a187ce29b7118616fb6e38a9397880 100644 (file)
@@ -11,7 +11,8 @@ beginning of the queue as fast as possible. In tevent library it is
 similar, but the queue is not automatically set for any event. The queue has to
 be created on purpose, and events which should follow the order of the FIFO
 queue have to be explicitly pinpointed. Creating such a queue is crucial in
-situations when sequential processing is absolutely essential for the succesful
+situations when sequential processing is absolutely essential for the
+successful
 completion of a task, e.g. for a large quantity of data that are about to be
 written from a buffer into a socket. The tevent library has its own queue
 structure that is ready to use after it has been initialized and started up
@@ -20,7 +21,7 @@ once.
 @subsection cr_queue Creation of Queues
 
 The first and most important step is the creation of the tevent queue
-(represented by struct tevent queue), which will then be in running mode.
+(represented by struct tevent_queue), which will then be in running mode.
 
 @code
 struct tevent_queue* tevent_queue_create (TALLOC_CTX *mem_ctx, const char *name)