Skip to content

Commit 461415e

Browse files
committed
Fixed bullet issue
1 parent 8ba1764 commit 461415e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rfcs/0377-mutex-trait.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ A "MUTual EXclusion" aka `Mutex` as used in this trait describes the **principle
5454

5555
* A struct `Spinlock` could be one implementor of trait `Mutex` where the struct name gives away HOW mutual exclusion is achieved.
5656
* A struct `Sleeplock` would be another implementor with a telling name.
57-
* For unfortunate reasons, a sleeping lock is often also called just `Mutex` in existing code (most prominent example being Linux). Using that naming scheme would mean a struct `Mutex` implementing the trait `Mutex` - this is discouraged to avoid stated ambiguity.
57+
* For unfortunate reasons, a sleeping lock is often also called just `Mutex` in existing code (most prominent example being Linux). Using that naming scheme would mean a struct `Mutex` implementing the trait `Mutex` - this is discouraged to avoid stated ambiguity.
5858

5959
## Helpers
6060

0 commit comments

Comments
 (0)