Skip to content

Commit 6f6e834

Browse files
committedFeb 18, 2014
fix comments
1 parent 704fde0 commit 6f6e834

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎tinyweb1.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ uv_loop_t* _loop;
1414

1515
static void tinyweb_on_connection(uv_stream_t* server, int status);
1616

17-
//start web serer, linstening ip:port
17+
//start web server, linstening ip:port
1818
//ip can be NULL or "", which means "0.0.0.0"
1919
void tinyweb_start(uv_loop_t* loop, const char* ip, int port) {
2020
struct sockaddr_in addr;

‎tinyweb2.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ uv_loop_t* _loop = NULL;
1515

1616
static void tinyweb_on_connection(uv_stream_t* server, int status);
1717

18-
//start web serer, linstening ip:port
18+
//start web server, linstening ip:port
1919
//ip can be NULL or "", which means "0.0.0.0"
2020
void tinyweb_start(uv_loop_t* loop, const char* ip, int port) {
2121
struct sockaddr_in addr;

‎tinyweb3.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const char* _doc_root_path = NULL;
1616

1717
static void tinyweb_on_connection(uv_stream_t* server, int status);
1818

19-
//start web serer, linstening ip:port
19+
//start web server, linstening ip:port
2020
//ip can be NULL or "", which means "0.0.0.0"
2121
//doc_root_path can be NULL, or requires not end with /
2222
void tinyweb_start(uv_loop_t* loop, const char* ip, int port, const char* doc_root_path) {

0 commit comments

Comments
 (0)
Please sign in to comment.