1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 09:24:57 +00:00

Documentation: Correct some typos found in kernel markdown files

This commit is contained in:
Annie Song 2023-05-05 03:18:15 -04:00 committed by Sam Atkins
parent 8eaf28b4ce
commit cbdb5f926c
4 changed files with 4 additions and 4 deletions

View file

@ -32,7 +32,7 @@ so the userland program could know about the situation and act accordingly.
An exception to this is when there's simply no way to propagate the error code to the userland program.
Maybe it's a `ATAPort` (in the IDE ATA code) that asynchronously tries to handle reading data from the harddrive,
but because of the async operation, we can't send the `errno` code back to userland, so we what we do is
but because of the async operation, we can't send the `errno` code back to userland, so what we do is
to ensure that internal functions still use the `ErrorOr<>` return type, and in main calling function, we use
other meaningful infrastructure utilities in the Kernel to indicate that the operation failed.