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
commit 566d3cb393
Notes: sideshowbarker 2024-07-18 17:00:44 +09:00
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++