aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/mod.rs
diff options
context:
space:
mode:
authorAnthony Ramine <n.oxyde@gmail.com>2017-09-26 01:30:06 +0200
committerAnthony Ramine <n.oxyde@gmail.com>2017-09-26 09:49:04 +0200
commite2dac78d3600cb4b2b4474f1db4f0fcaadbe24ea (patch)
tree3a0ae2014f80a0e7af0d76e7f7e3d043769293a8 /components/script/dom/mod.rs
parentc52fd0a78041ec22db1c4b391556368cd8b87b02 (diff)
downloadservo-e2dac78d3600cb4b2b4474f1db4f0fcaadbe24ea.tar.gz
servo-e2dac78d3600cb4b2b4474f1db4f0fcaadbe24ea.zip
Rename LayoutJS<T> to LayoutDom<T>
Diffstat (limited to 'components/script/dom/mod.rs')
-rw-r--r--components/script/dom/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/mod.rs b/components/script/dom/mod.rs
index b14cca5f820..8df3660a3f9 100644
--- a/components/script/dom/mod.rs
+++ b/components/script/dom/mod.rs
@@ -195,11 +195,11 @@
//! =================================
//!
//! Layout code can access the DOM through the
-//! [`LayoutJS`](bindings/root/struct.LayoutJS.html) smart pointer. This does not
+//! [`LayoutDom`](bindings/root/struct.LayoutDom.html) smart pointer. This does not
//! keep the DOM object alive; we ensure that no DOM code (Garbage Collection
//! in particular) runs while the layout thread is accessing the DOM.
//!
-//! Methods accessible to layout are implemented on `LayoutJS<Foo>` using
+//! Methods accessible to layout are implemented on `LayoutDom<Foo>` using
//! `LayoutFooHelpers` traits.
#[macro_use]