Browse Source

Merge pull request #998 from JensWallgren/master

Mistyped function call in docs
bel2125 4 năm trước cách đây
mục cha
commit
e9ca756325
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      docs/Embedding.md

+ 1 - 1
docs/Embedding.md

@@ -294,7 +294,7 @@ handler(struct mg_connection *conn, void *ignored)
 	const char *msg = "Hello world";
 	unsigned long len = (unsigned long)strlen(msg);
 
-    mg_send_ok(conn, "text/plain", len);
+	mg_send_http_ok(conn, "text/plain", len);
 
 	mg_write(conn, msg, len);