Skip to content

Commit 26e4680

Browse files
committed
core: Convert TODOs to FIXMEs
1 parent 1b8deb2 commit 26e4680

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/libcore/cell.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -155,10 +155,10 @@
155155
//! }
156156
//! ```
157157
//!
158-
// TODO: Explain difference between Cell and RefCell
159-
// TODO: Downsides to interior mutability
160-
// TODO: Can't be shared between threads. Dynamic borrows
161-
// TODO: Relationship to Atomic types and RWLock
158+
// FIXME: Explain difference between Cell and RefCell
159+
// FIXME: Downsides to interior mutability
160+
// FIXME: Can't be shared between threads. Dynamic borrows
161+
// FIXME: Relationship to Atomic types and RWLock
162162

163163
use clone::Clone;
164164
use cmp::Eq;

src/libcore/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
//!
2929
//! # How to use the core library
3030
//!
31-
// TODO: Fill me in with more detail when the interface settles
31+
// FIXME: Fill me in with more detail when the interface settles
3232
//! This library is built on the assumption of a few existing symbols:
3333
//!
3434
//! * `memcpy`, `memcmp`, `memset` - These are core memory routines which are

0 commit comments

Comments
 (0)