* Add missing of

* change tense of spawn

* ignored to ignoring

* add need
This commit is contained in:
Onè
2024-05-28 05:04:08 -04:00
committed by GitHub
parent bd9faa049f
commit f74fbd4800
4 changed files with 4 additions and 4 deletions

View File

@@ -74,7 +74,7 @@ struct TicketStore {
```
This approach is more efficient, but it has a downside: `TicketStore` has to become **aware** of the multithreaded
nature of the system; up until now, `TicketStore` has been blissfully ignored the existence of threads.\
nature of the system; up until now, `TicketStore` has been blissfully ignoring the existence of threads.\
Let's go for it anyway.
## Who holds the lock?