1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:57:43 +00:00

Everywhere: Fix typos

Mostly in comments, but sprintf() now prints "August" instead of
"Auguest" so that's something.
This commit is contained in:
Nico Weber 2020-10-02 09:59:28 -04:00 committed by Andreas Kling
parent 7399874479
commit ef1b21004f
28 changed files with 39 additions and 39 deletions

View file

@ -365,7 +365,7 @@ void endservent()
}
// Fill the service entry buffer with the information contained
// in the currently read line, returns true if successfull,
// in the currently read line, returns true if successful,
// false if failure occurs.
static bool fill_getserv_buffers(const char* line, ssize_t read)
{
@ -376,7 +376,7 @@ static bool fill_getserv_buffers(const char* line, ssize_t read)
// This indicates an incorrect file format.
// Services file entries should always at least contain
// name and port/protocol, seperated by tabs.
// name and port/protocol, separated by tabs.
if (split_line.size() < 2) {
fprintf(stderr, "getservent(): malformed services file\n");
return false;