Correct minor misspellings

This commit is contained in:
Kenny Levinsen 2021-03-16 12:56:30 +01:00
parent 75cb20e891
commit 4e65e1bf47
2 changed files with 2 additions and 2 deletions

View file

@ -12,7 +12,7 @@ Seat management takes care of mediating access to shared devices (graphics, inpu
### seatd
A seat management deamon, that does everything it needs to do. Nothing more, nothing less. Depends only on libc.
A seat management daemon, that does everything it needs to do. Nothing more, nothing less. Depends only on libc.
### libseat

View file

@ -146,7 +146,7 @@ int server_handle_connection(int fd, uint32_t mask, void *data) {
if (mask & (EVENT_ERROR | EVENT_HANGUP)) {
shutdown(fd, SHUT_RDWR);
server->running = false;
log_errorf("Server socket recieved an error: %s", strerror(errno));
log_errorf("Server socket received an error: %s", strerror(errno));
return -1;
}