Skip to content

Commit 09dd4d4

Browse files
SparrowLiitshepang
authored andcommitted
correct typo in parallel-rustc.md
1 parent 169f5d3 commit 09dd4d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/parallel-rustc.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ are implemented diferently depending on whether `parallel-compiler` is true.
3131
| -------------------------------- | --------------------------------------------------- | ------------ |
3232
| Lrc | std::sync::Arc | std::rc::Rc |
3333
| Weak | std::sync::Weak | std::rc::Weak |
34-
| Atomic{Bool}/{Usize}/{U32}/{U64} | std::sync::atomic::Atomic{Bool}/{Usize}/{U32}/{U64} | (std::cell::Cell<Bool/Usize/U32/U64>) |
34+
| Atomic{Bool}/{Usize}/{U32}/{U64} | std::sync::atomic::Atomic{Bool}/{Usize}/{U32}/{U64} | (std::cell::Cell<bool/usize/u32/u64>) |
3535
| OnceCell | std::sync::OnceLock | std::cell::OnceCell |
3636
| Lock\<T> | (parking_lot::Mutex\<T>) | (std::cell::RefCell) |
3737
| RwLock\<T> | (parking_lot::RwLock\<T>) | (std::cell::RefCell) |
3838
| MTRef<'a, T> | &'a T | &'a mut T |
3939
| MTLock\<T> | (Lock\<T>) | (T) |
4040
| ReadGuard | parking_lot::RwLockReadGuard | std::cell::Ref |
4141
| MappedReadGuard | parking_lot::MappedRwLockReadGuard | std::cell::Ref |
42-
| WriteGuard | parking_lot::MappedWriteGuard | std::cell::RefMut |
42+
| WriteGuard | parking_lot::RwLockWriteGuard | std::cell::RefMut |
4343
| MappedWriteGuard | parking_lot::MappedRwLockWriteGuard | std::cell::RefMut |
4444
| LockGuard | parking_lot::MutexGuard | std::cell::RefMut |
4545
| MappedLockGuard | parking_lot::MappedMutexGuard | std::cell::RefMut |

0 commit comments

Comments
 (0)