From f687522b4dad95f92dccb3fd864614f163672398 Mon Sep 17 00:00:00 2001
From: Bruce Mitchener <bruce.mitchener@gmail.com>
Date: Sat, 23 Jul 2016 12:13:25 +0700
Subject: [PATCH] Link to inspirations in docs.

---
 src/lib.rs | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/src/lib.rs b/src/lib.rs
index f5f5131..8aeb701 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -17,9 +17,9 @@
 //!
 //! This library is inspired by many other things, including:
 //!
-//! * Python's humanize library.
-//! * JavaScript's moment.js.
-//! * The 'at' command's input parsing.
+//! * Python's [humanize library].
+//! * JavaScript's [moment.js].
+//! * The ['at' command]'s input parsing.
 //!
 //! Contributions extending our functionality are welcome, as are
 //! contributions that add support for additional languages.
@@ -55,6 +55,10 @@
 //! The parser stores no state related to an actual parse operation. It
 //! simply stores the matchers which have been registered, so this can
 //! and should be cached and used across multiple parse operations.
+//!
+//! [humanize library]: https://pypi.python.org/pypi/humanize
+//! [moment.js]: http://momentjs.com/
+//! ['at' command]: http://www.computerhope.com/unix/uat.htm
 
 #![warn(missing_docs)]
 #![deny(trivial_numeric_casts,