Skip to content

Commit

Permalink
Change TODO to FIXME
Browse files Browse the repository at this point in the history
  • Loading branch information
Stjepan Glavina committed Apr 6, 2018
1 parent f86deef commit 9377340
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcore/cell.rs
Expand Up @@ -270,7 +270,7 @@ impl<T:Copy> Cell<T> {
/// assert_eq!(c.get(), 6);
/// ```
#[inline]
#[unstable(feature = "cell_update", issue = "0")] // TODO: issue
#[unstable(feature = "cell_update", issue = "0")] // FIXME: issue
pub fn update<F>(&self, f: F) -> T
where
F: FnOnce(T) -> T,
Expand Down

0 comments on commit 9377340

Please sign in to comment.