diff options
author | Manish Goregaokar <manishsmail@gmail.com> | 2015-01-28 13:54:18 +0530 |
---|---|---|
committer | Manish Goregaokar <manishsmail@gmail.com> | 2015-01-28 13:54:18 +0530 |
commit | b8fb725af27c1d7d913618e09c4a246b7039f25e (patch) | |
tree | 2be4e1eac7d094b471179d09af1b9cfa647cf241 /components/script/dom/node.rs | |
parent | 547ed204550bf60b0aaa5788eaa0c1590da1544d (diff) | |
download | servo-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.rs | 2 |
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); |