From: Heng Li Date: Sun, 6 Sep 2015 21:54:06 +0000 (-0400) Subject: minor fix in doc X-Git-Url: http://www.kaiwu.me/postgresql/commit/static/gitweb.js?a=commitdiff_plain;h=3434910e0b71e865753a4023dbb778cf977170ee;p=klib.git minor fix in doc --- 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);