Skip to content

Commit

Permalink
Auto merge of #14001 - 11Takanori:recieve-typo-fix, r=Ms2ger
Browse files Browse the repository at this point in the history
Fix typo recieve -> receive

<!-- Please describe your changes on the following line: -->

---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->
- [ ] `./mach build -d` does not report any errors
- [ ] `./mach test-tidy` does not report any errors
- [ ] These changes fix #__ (github issue number if applicable).

<!-- Either: -->
- [ ] There are tests for these changes OR
- [ ] These changes do not require tests because _____

<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/14001)
<!-- Reviewable:end -->
  • Loading branch information
bors-servo committed Oct 31, 2016
2 parents cecfea0 + f23fe48 commit daf13ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/constellation/constellation.rs
Expand Up @@ -1019,7 +1019,7 @@ impl<Message, LTF, STF> Constellation<Message, LTF, STF>
fn handle_shutdown(&mut self) {
// At this point, there are no active pipelines,
// so we can safely block on other threads, without worrying about deadlock.
// Channels to recieve signals when threads are done exiting.
// Channels to receive signals when threads are done exiting.
let (core_sender, core_receiver) = ipc::channel().expect("Failed to create IPC channel!");
let (storage_sender, storage_receiver) = ipc::channel().expect("Failed to create IPC channel!");

Expand Down

0 comments on commit daf13ec

Please sign in to comment.