Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix simple typo, wheter -> whether #517

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions modules/pico_sntp_client.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,13 @@ PACKED_STRUCT_DEF pico_sntp_header

struct sntp_server_ns_cookie
{
int rec; /* Indicates wheter an sntp packet has been received */
int rec; /* Indicates whether an sntp packet has been received */
uint16_t proto; /* IPV4 or IPV6 prototype */
pico_time stamp; /* Timestamp of the moment the sntp packet is sent */
char *hostname; /* Hostname of the (s)ntp server*/
struct pico_socket *sock; /* Socket which contains the cookie */
void (*cb_synced)(pico_err_t status); /* Callback function for telling the user
wheter/when the time is synchronised */
whether/when the time is synchronised */
uint32_t timer; /* Timer that will signal timeout */
};

Expand Down