1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 22:18:12 +00:00

Documentation: Correct some typos in kernel and browser docs

This commit is contained in:
Siddhant Rao 2021-06-02 19:10:41 +05:30 committed by Andreas Kling
parent ea7ba34a31
commit 566d3cb393
2 changed files with 4 additions and 4 deletions

View file

@ -16,7 +16,7 @@ Locker locker(m_lock);
return true;
```
This lock doesn't disable interrupts at all, and if it already in use, the scheduler will simply yield away from that section until it tries to lock it again.
This lock doesn't disable interrupts at all, and if it is already in use, the scheduler will simply yield away from that section until it tries to lock it again.
### Hard lock - `SpinLock<u8>`
@ -31,7 +31,7 @@ ScopedSpinLock lock(m_lock);
return true;
```
### Why we need soft and hard locking in the AHCI code?
### Why do we need soft and hard locking in the AHCI code?
First of all, the proper way of taking a `SpinLock` and `Lock` is to:
```c++