Skip to content

Commit

Permalink
Fix spelling mistakes
Browse files Browse the repository at this point in the history
  • Loading branch information
rawalexe committed Dec 19, 2024
1 parent 32d1256 commit b74f0c3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/spec/executable/fleet-provisioning.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ operations

- [fleet-provisioning-param-certfilePath-1] The argument will provide the path
to the certificate that will be created locally as well as the onces that will
be fetched from iot core. By deafult the location will be the current working
be fetched from iot core. By default the location will be the current working
directory
- [fleet-provisioning-param-certfilePath-2] The certfilePath argument can be
provided by `--cert-file-Path` or `-c`.
Expand Down
4 changes: 2 additions & 2 deletions ggl-recipe/src/recipe.c
Original file line number Diff line number Diff line change
Expand Up @@ -317,10 +317,10 @@ static GglError manifest_selection(
}
}

GglList selection_deafult
GglList selection_default
= GGL_LIST(GGL_OBJ_BUF(GGL_STR("all")));
return lifecycle_selection(
&GGL_OBJ_LIST(selection_deafult),
&GGL_OBJ_LIST(selection_default),
recipe_map,
selected_lifecycle_object
);
Expand Down
2 changes: 1 addition & 1 deletion recipe2unit/src/unit_file_generator.c
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ static GglError update_unit_file_buffer(
return ret;
}
} else {
// The deafult timeout is 120 seconds
// The default timeout is 120 seconds
ret = ggl_byte_vec_append(out, GGL_STR("TimeoutSec=120\n"));
if (ret != GGL_ERR_OK) {
return ret;
Expand Down
4 changes: 2 additions & 2 deletions tes-serverd/src/http_server.c
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ static void request_handler(struct evhttp_request *req, void *arg) {
evbuffer_free(buf);
}

static void deafult_handler(struct evhttp_request *req, void *arg) {
static void default_handler(struct evhttp_request *req, void *arg) {
(void) arg;

GglBuffer response_cred_buffer
Expand Down Expand Up @@ -205,7 +205,7 @@ GglError http_server(void) {
evhttp_set_cb(
http, "/2016-11-01/credentialprovider/", request_handler, NULL
);
evhttp_set_gencb(http, deafult_handler, NULL);
evhttp_set_gencb(http, default_handler, NULL);

// Bind to available port
handle = evhttp_bind_socket_with_handle(http, "0.0.0.0", 0);
Expand Down

0 comments on commit b74f0c3

Please sign in to comment.