M README.md => README.md +1 -1
@@ 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
M seatd/server.c => seatd/server.c +1 -1
@@ 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;
}