diff options
| author | Botahamec <botahamec@outlook.com> | 2024-05-21 13:39:57 -0400 |
|---|---|---|
| committer | Botahamec <botahamec@outlook.com> | 2024-05-21 13:39:57 -0400 |
| commit | a4625296cb98a68a590ae1aa78b07f190a850f37 (patch) | |
| tree | 01487106e65b1cde4f8dda2f35f2300d9a105429 /src/lib.rs | |
| parent | 6e3aa5182604b30ef75ba5676e9f677cc1d18fe3 (diff) | |
fix errors
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -22,10 +22,10 @@ //! 4. **partial allocation** //! //! This library seeks to solve **partial allocation** by requiring total -//! allocation. All of the resources a thread needs must be allocated at the -//! same time. In order to request new resources, the old resources must be -//! dropped first. Requesting multiple resources at once is atomic. You either -//! get all of the requested resources or none at all. +//! allocation. All the resources a thread needs must be allocated at the same +//! time. In order to request new resources, the old resources must be dropped +//! first. Requesting multiple resources at once is atomic. You either get all +//! the requested resources or none at all. //! //! # Performance //! |
