Skip to content

Commit 4a04a18

Browse files
committed
Convert NOTEs to FIXMEs
1 parent 269409f commit 4a04a18

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/libcore/comm.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ use vec;
2020

2121
use pipes::{recv, try_recv, wait_many, peek, PacketHeader};
2222

23-
// NOTE Making this public exposes some plumbing from pipes. Needs
24-
// some refactoring
23+
// FIXME #5160: Making this public exposes some plumbing from
24+
// pipes. Needs some refactoring
2525
pub use pipes::Selectable;
2626

2727
/// A trait for things that can send multiple messages.

src/rt/rust_upcall.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ upcall_fail(char const *expr,
120120
size_t line) {
121121
rust_task *task = rust_try_get_current_task();
122122
if (task == NULL) {
123-
// NOTE: Need to think about what to do here
123+
// FIXME #5161: Need to think about what to do here
124124
printf("failure outside of a task");
125125
abort();
126126
}

0 commit comments

Comments
 (0)