Skip to content

Commit

Permalink
Fix typo on README.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholassm committed Jul 14, 2024
1 parent b521645 commit 10315f6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,11 @@ fn main() {

let mut producer1 = disruptor::build_multi_producer(64, factory, BusySpin)
// `h2` handles events concurrently with `h1`.
.pined_at_core(1).handle_events_with(h1)
.pined_at_core(2).handle_events_with(h2)
.pin_at_core(1).handle_events_with(h1)
.pin_at_core(2).handle_events_with(h2)
.and_then()
// `h3` handles events after `h1` and `h2`.
.pined_at_core(3).handle_events_with(h3)
.pin_at_core(3).handle_events_with(h3)
.build();

// Create another producer.
Expand Down

0 comments on commit 10315f6

Please sign in to comment.