diff options
Diffstat (limited to 'components/script/dom/bindings/cell.rs')
-rw-r--r-- | components/script/dom/bindings/cell.rs | 4 |
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`. |