diff options
author | Ms2ger <ms2ger@gmail.com> | 2015-06-10 13:45:05 +0200 |
---|---|---|
committer | Ms2ger <ms2ger@gmail.com> | 2015-06-10 13:45:05 +0200 |
commit | 9ef975d9293ddbd7a4c5240ea82988c34a9dd8e7 (patch) | |
tree | 258d4690c44cd22c7b40564599cbc1bfd967d453 /components/script/dom/mod.rs | |
parent | 3ece6bc166c06b1b63f417742cb30dde0e34e63e (diff) | |
download | servo-9ef975d9293ddbd7a4c5240ea82988c34a9dd8e7.tar.gz servo-9ef975d9293ddbd7a4c5240ea82988c34a9dd8e7.zip |
Fix a typo in the DOM documentation.
Diffstat (limited to 'components/script/dom/mod.rs')
-rw-r--r-- | components/script/dom/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/mod.rs b/components/script/dom/mod.rs index 0549cca737b..c108186947a 100644 --- a/components/script/dom/mod.rs +++ b/components/script/dom/mod.rs @@ -165,7 +165,7 @@ //! //! * adding the new IDL file at `components/script/dom/webidls/Foo.webidl`; //! * creating `components/script/dom/foo.rs`; -//! * listing `foo.rs` in components/script/dom/mod.rs`; +//! * listing `foo.rs` in `components/script/dom/mod.rs`; //! * defining the DOM struct `Foo` with a `#[dom_struct]` attribute, a //! superclass or `Reflector` member, and other members as appropriate; //! * implementing the |