From a36050ab4be1166a02f31b758664d3ccc30ddef8 Mon Sep 17 00:00:00 2001 From: Sergey Lyubka <valenok@gmail.com> Date: Mon, 2 Aug 2021 00:23:01 +0100 Subject: [PATCH] Fix #1326 - spelling errors --- examples/complete/README.md | 4 ++-- examples/http-restful-server/main.c | 2 +- mongoose.c | 2 +- src/http.c | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/complete/README.md b/examples/complete/README.md index 5f7e4f4ba..4c4a9ea98 100644 --- a/examples/complete/README.md +++ b/examples/complete/README.md @@ -1,7 +1,7 @@ # A complete device dashboard This example is a demonstration of how Mongoose Library could be integrated -into an embedded device and provide a complete device dashbord with the +into an embedded device and provide a complete device dashboard with the following features: - Multiple logins with different permissions (admin and user) @@ -14,7 +14,7 @@ following features: - Live video stream -In essense, this example is a combination of several other examples +In essence, this example is a combination of several other examples pulled together (multiple-logins, dashboard, live-log, video-stream). # Screenshots diff --git a/examples/http-restful-server/main.c b/examples/http-restful-server/main.c index 48e17dfda..1a51a1072 100644 --- a/examples/http-restful-server/main.c +++ b/examples/http-restful-server/main.c @@ -25,7 +25,7 @@ static void fn(struct mg_connection *c, int ev, void *ev_data, void *fn_data) { struct mg_tls_opts opts = { //.ca = "ca.pem", // Uncomment to enable two-way SSL .cert = "server.pem", // Certificate PEM file - .certkey = "server.pem", // This pem conains both cert and key + .certkey = "server.pem", // This pem contains both cert and key }; mg_tls_init(c, &opts); } else if (ev == MG_EV_HTTP_MSG) { diff --git a/mongoose.c b/mongoose.c index eba807801..74a254088 100644 --- a/mongoose.c +++ b/mongoose.c @@ -1468,7 +1468,7 @@ static int uri_to_path(struct mg_connection *c, struct mg_http_message *hm, } else if (!(fs->stat(root_dir, NULL, NULL) & MG_FS_DIR)) { mg_http_reply(c, 400, "", "Invalid web root [%s]\n", root_dir); } else { - // NOTE(lsm): Xilinx snprintf does not 0-terminate the detination for + // NOTE(lsm): Xilinx snprintf does not 0-terminate the destination for // the %.*s specifier, if the length is zero. Make sure hm->uri.len > 0 size_t n1 = strlen(root_dir), n2; // Temporarily append URI to the root_dir: that is the unresolved path diff --git a/src/http.c b/src/http.c index b75581802..3d89c6656 100644 --- a/src/http.c +++ b/src/http.c @@ -697,7 +697,7 @@ static int uri_to_path(struct mg_connection *c, struct mg_http_message *hm, } else if (!(fs->stat(root_dir, NULL, NULL) & MG_FS_DIR)) { mg_http_reply(c, 400, "", "Invalid web root [%s]\n", root_dir); } else { - // NOTE(lsm): Xilinx snprintf does not 0-terminate the detination for + // NOTE(lsm): Xilinx snprintf does not 0-terminate the destination for // the %.*s specifier, if the length is zero. Make sure hm->uri.len > 0 size_t n1 = strlen(root_dir), n2; // Temporarily append URI to the root_dir: that is the unresolved path -- GitLab