From: Volker Lendecke Date: Sun, 11 Sep 2016 07:28:35 +0000 (+0200) Subject: tevent_tutorial: Fix typos X-Git-Url: http://git.samba.org/?p=metze%2Fsamba%2Fwip.git;a=commitdiff_plain;h=60fe6e9fab12fa566dc894f934a77b74e2310b10 tevent_tutorial: Fix typos Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- diff --git a/lib/tevent/doc/tevent_context.dox b/lib/tevent/doc/tevent_context.dox index 1036d3c106da..39eb85eb4773 100644 --- a/lib/tevent/doc/tevent_context.dox +++ b/lib/tevent/doc/tevent_context.dox @@ -67,7 +67,7 @@ event again. There are 2 types of loop available for use in tevent library:
  • int tevent_loop_once()
  • -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. diff --git a/lib/tevent/doc/tevent_queue.dox b/lib/tevent/doc/tevent_queue.dox index fef98c81e061..9c247e5212a1 100644 --- a/lib/tevent/doc/tevent_queue.dox +++ b/lib/tevent/doc/tevent_queue.dox @@ -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)