added documentation url and fixed a dumb mistake

lumi created

Change summary

Cargo.toml | 3 ++-
src/lib.rs | 5 ++---
2 files changed, 4 insertions(+), 4 deletions(-)

Detailed changes

Cargo.toml 🔗

@@ -1,10 +1,11 @@
 [package]
 name = "minidom"
-version = "0.1.0"
+version = "0.1.1"
 authors = ["lumi <lumi@pew.im>"]
 description = "A small, simple DOM implementation on top of xml-rs."
 homepage = "https://gitlab.com/lumi/minidom-rs"
 repository = "https://gitlab.com/lumi/minidom-rs"
+documentation = "https://docs.rs/minidom"
 readme = "README.md"
 keywords = ["xml"]
 license = "LGPL-3.0+"

src/lib.rs 🔗

@@ -56,11 +56,10 @@
 //!
 //! # Usage
 //!
-//! To use `minidom`, add this to your `Cargo.toml`:
+//! To use `minidom`, add this to your `Cargo.toml` under `dependencies`:
 //!
 //! ```toml,ignore
-//! [dependencies.minidom]
-//! git = "https://gitlab.com/lumi/minidom-rs.git"
+//! minidom = "*"
 //! ```
 
 extern crate xml;