From 3434910e0b71e865753a4023dbb778cf977170ee Mon Sep 17 00:00:00 2001 From: Heng Li Date: Sun, 6 Sep 2015 17:54:06 -0400 Subject: [PATCH] minor fix in doc --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index cc08f68..6b4ce89 100644 --- a/index.html +++ b/index.html @@ -6328,7 +6328,7 @@ int main() } ``` -
+
!!Synopsis
 
 * Functionality: simple multi-threading models.
@@ -6432,7 +6432,7 @@ static void *worker_pipeline(void *shared, int step, void *in) // kt_pipeline()
 	} else if (step == 1) { // step 1: reverse lines
 		kt_for(p->n_threads, worker_for, in, ((step_t*)in)->n_lines);
 		return in;
-	} else if (step == 2) { // step 3: write the buffer to output
+	} else if (step == 2) { // step 2: write the buffer to output
 		step_t *s = (step_t*)in;
 		while (s->n_lines > 0) {
 			fputs(s->lines[--s->n_lines], stdout);
-- 
2.47.3