aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/node.rs
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-01-28 13:54:18 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-01-28 13:54:18 +0530
commitb8fb725af27c1d7d913618e09c4a246b7039f25e (patch)
tree2be4e1eac7d094b471179d09af1b9cfa647cf241 /components/script/dom/node.rs
parent547ed204550bf60b0aaa5788eaa0c1590da1544d (diff)
downloadservo-b8fb725af27c1d7d913618e09c4a246b7039f25e.tar.gz
servo-b8fb725af27c1d7d913618e09c4a246b7039f25e.zip
raw_pointer_deriving -> raw_pointer_derive
Diffstat (limited to 'components/script/dom/node.rs')
-rw-r--r--components/script/dom/node.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/node.rs b/components/script/dom/node.rs
index 405d950b7f4..40fa4b037b4 100644
--- a/components/script/dom/node.rs
+++ b/components/script/dom/node.rs
@@ -2206,7 +2206,7 @@ impl<'a> NodeMethods for JSRef<'a, Node> {
/// The address of a node known to be valid. These are sent from script to layout,
/// and are also used in the HTML parser interface.
-#[allow(raw_pointer_deriving)]
+#[allow(raw_pointer_derive)]
#[derive(Clone, PartialEq, Eq, Copy)]
pub struct TrustedNodeAddress(pub *const c_void);