Fix doc typo.

This commit is contained in:
Bodil Stokke 2018-11-17 23:06:48 +00:00
parent 43550de7b8
commit c036b7c7c5
1 changed files with 2 additions and 1 deletions

View File

@ -169,7 +169,7 @@
//! ## Render to a virtual DOM //! ## Render to a virtual DOM
//! //!
//! The DOM tree structure also implements a method called `vnode()`, which renders //! The DOM tree structure also implements a method called `vnode()`, which renders
//! the tree to a tree of [`Node`][Node]s, which is a mirror of the generated tree //! the tree to a tree of [`VNode`][VNode]s, which is a mirror of the generated tree
//! with every attribute value rendered into `String`s. You can walk this virtual //! with every attribute value rendered into `String`s. You can walk this virtual
//! DOM tree and use it to build an actual DOM tree with `stdweb` or pass it on to //! DOM tree and use it to build an actual DOM tree with `stdweb` or pass it on to
//! your favourite virtual DOM system. //! your favourite virtual DOM system.
@ -193,6 +193,7 @@
//! [String]: https://doc.rust-lang.org/std/string/struct.String.html //! [String]: https://doc.rust-lang.org/std/string/struct.String.html
//! [to_string]: https://doc.rust-lang.org/std/string/trait.ToString.html#tymethod.to_string //! [to_string]: https://doc.rust-lang.org/std/string/trait.ToString.html#tymethod.to_string
//! [Node]: dom/trait.Node.html //! [Node]: dom/trait.Node.html
//! [VNode]: dom/enum.VNode.html
//! [FromStr]: https://doc.rust-lang.org/std/str/trait.FromStr.html //! [FromStr]: https://doc.rust-lang.org/std/str/trait.FromStr.html
//! [SpacedSet]: types/struct.SpacedSet.html //! [SpacedSet]: types/struct.SpacedSet.html
//! [IntoIterator]: https://doc.rust-lang.org/std/iter/trait.IntoIterator.html //! [IntoIterator]: https://doc.rust-lang.org/std/iter/trait.IntoIterator.html