aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZhen Zhang <izgzhen@gmail.com>2016-05-02 11:17:35 +0800
committerZhen Zhang <izgzhen@gmail.com>2016-05-02 11:17:35 +0800
commit0385f60310090178dda0182b4677c8e51133c159 (patch)
tree527bbdc8e20f634f9d55306f05c37224cfda1a9a
parente65009f317e64b480bd6f6ff4a09fde54507484f (diff)
downloadservo-0385f60310090178dda0182b4677c8e51133c159.tar.gz
servo-0385f60310090178dda0182b4677c8e51133c159.zip
fix docs
-rw-r--r--components/script/dom/bindings/mod.rs5
-rw-r--r--components/script/dom/mod.rs4
2 files changed, 1 insertions, 8 deletions
diff --git a/components/script/dom/bindings/mod.rs b/components/script/dom/bindings/mod.rs
index 160141f76e4..d69720dc538 100644
--- a/components/script/dom/bindings/mod.rs
+++ b/components/script/dom/bindings/mod.rs
@@ -112,11 +112,6 @@
//!
//! Legacy callers are not yet implemented.
//!
-//! Rust reflections of getters and setters
-//! ---------------------------------------
-//!
-//! *To be written.*
-//!
//! Throwing exceptions
//! ===================
//!
diff --git a/components/script/dom/mod.rs b/components/script/dom/mod.rs
index 853ac520b9a..646089a9020 100644
--- a/components/script/dom/mod.rs
+++ b/components/script/dom/mod.rs
@@ -32,13 +32,11 @@
//! * rooting pointers on the stack:
//! the [`Root`](bindings/js/struct.Root.html) smart pointer;
//! * tracing pointers in member fields: the [`JS`](bindings/js/struct.JS.html),
-//! [`MutNullableJS`](bindings/js/struct.MutNullableJS.html) and
+//! [`MutNullableHeap`](bindings/js/struct.MutNullableHeap.html) and
//! [`MutHeap`](bindings/js/struct.MutHeap.html) smart pointers and
//! [the tracing implementation](bindings/trace/index.html);
//! * rooting pointers from across thread boundaries or in channels: the
//! [`Trusted`](bindings/refcounted/struct.Trusted.html) smart pointer;
-//! * extracting pointers to DOM objects from their reflectors: the
-//! [`Unrooted`](bindings/js/struct.Unrooted.html) smart pointer.
//!
//! Inheritance
//! ===========