From 0fa392f7f0b570649b33c7f234445542d6d8f238 Mon Sep 17 00:00:00 2001 From: Colin Kiegel Date: Wed, 5 Apr 2017 20:51:36 +0200 Subject: doc - group link definitions --- src/lib.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index 4a27c7c..0ac69fe 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,7 +1,5 @@ //! A [TOML]-parsing library //! -//! [TOML]: https://github.com/toml-lang/toml -//! //! This library implements a [TOML] v0.4.0 compatible parser, //! primarily supporting the [`serde`] library for encoding/decoding //! various types in Rust. @@ -146,6 +144,7 @@ //! } //! ``` //! +//! [TOML]: https://github.com/toml-lang/toml //! [Cargo]: https://crates.io/ //! [`serde`]: https://serde.rs/ -- cgit v1.2.3 From afb8c42d4706bbc342d13a6c5ebfb33dc960627f Mon Sep 17 00:00:00 2001 From: Colin Kiegel Date: Wed, 5 Apr 2017 21:30:32 +0200 Subject: group mod statements consistently --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index 0ac69fe..7b72eac 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -155,9 +155,9 @@ extern crate serde; pub mod value; -mod datetime; #[doc(no_inline)] pub use value::Value; +mod datetime; pub mod ser; #[doc(no_inline)] -- cgit v1.2.3