aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/bindings/cell.rs
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2017-10-14 13:08:39 +0200
committerSimon Sapin <simon.sapin@exyr.org>2017-10-16 20:19:59 +0200
commita819cfb0fa8526f70d230076e81de2f471c9bfaf (patch)
tree6c0eae71b41d58f6debeec2e16ae2fa09942189c /components/script/dom/bindings/cell.rs
parent99b052d3a6d59ad17ed2bf3d3c54af2bb40d926a (diff)
downloadservo-a819cfb0fa8526f70d230076e81de2f471c9bfaf.tar.gz
servo-a819cfb0fa8526f70d230076e81de2f471c9bfaf.zip
Replace uses of libcore with libstd in components/script
Diffstat (limited to 'components/script/dom/bindings/cell.rs')
-rw-r--r--components/script/dom/bindings/cell.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/bindings/cell.rs b/components/script/dom/bindings/cell.rs
index 2ae54fce97a..2235e3ac769 100644
--- a/components/script/dom/bindings/cell.rs
+++ b/components/script/dom/bindings/cell.rs
@@ -9,7 +9,7 @@ use style::thread_state;
/// A mutable field in the DOM.
///
-/// This extends the API of `core::cell::RefCell` to allow unsafe access in
+/// This extends the API of `std::cell::RefCell` to allow unsafe access in
/// certain situations, with dynamic checking in debug builds.
#[derive(Clone, Debug, Default, HeapSizeOf, PartialEq)]
pub struct DomRefCell<T> {
@@ -57,7 +57,7 @@ impl<T> DomRefCell<T> {
}
}
-// Functionality duplicated with `core::cell::RefCell`
+// Functionality duplicated with `std::cell::RefCell`
// ===================================================
impl<T> DomRefCell<T> {
/// Create a new `DomRefCell` containing `value`.