Skip to content

Commit

Permalink
Merge pull request crossbeam-rs#86 from apasel422/patch-1
Browse files Browse the repository at this point in the history
Fix typo in ms_queue
  • Loading branch information
alexcrichton authored Sep 10, 2016
2 parents 55c14a7 + 65eed7e commit eff92fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sync/ms_queue.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use mem::CachePadded;
/// Usable with any number of producers and consumers.
// The representation here is a singly-linked list, with a sentinel
// node at the front. In general the `tail` pointer may lag behind the
// actual tail. Non-sentinal nodes are either all `Data` or all
// actual tail. Non-sentinel nodes are either all `Data` or all
// `Blocked` (requests for data from blocked threads).
#[derive(Debug)]
pub struct MsQueue<T> {
Expand Down

0 comments on commit eff92fe

Please sign in to comment.