From 7da483cb1efa8a59806493bfcce5ff611cbc04fd Mon Sep 17 00:00:00 2001 From: Jianhui Zhao Date: Thu, 30 Nov 2017 16:07:28 +0800 Subject: [PATCH] uh_send_head: fix wrong description Signed-off-by: Jianhui Zhao --- src/include/uhttp/uhttp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/uhttp/uhttp.h b/src/include/uhttp/uhttp.h index c60e99e..8e726cd 100755 --- a/src/include/uhttp/uhttp.h +++ b/src/include/uhttp/uhttp.h @@ -56,7 +56,7 @@ int uh_printf(struct uh_connection *con, const char *fmt, ...); * Otherwise, `uh_send()` or `uh_printf()` must be used. * Extra headers could be set through `extra_headers`. * - * NOTE: `extra_headers` must NOT be terminated by a new line. + * NOTE: `extra_headers` must be terminated by a new line("\r\n"). */ void uh_send_head(struct uh_connection *con, int status, int length, const char *extra_headers);