about summary refs log tree commit diff
path: root/src/libflate/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libflate/lib.rs')
-rw-r--r--src/libflate/lib.rs14
1 files changed, 5 insertions, 9 deletions
diff --git a/src/libflate/lib.rs b/src/libflate/lib.rs
index 568210118a8..36a04392c36 100644
--- a/src/libflate/lib.rs
+++ b/src/libflate/lib.rs
@@ -8,15 +8,11 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-/*!
-
-Simple [DEFLATE][def]-based compression. This is a wrapper around the
-[`miniz`][mz] library, which is a one-file pure-C implementation of zlib.
-
-[def]: https://en.wikipedia.org/wiki/DEFLATE
-[mz]: https://code.google.com/p/miniz/
-
-*/
+//! Simple [DEFLATE][def]-based compression. This is a wrapper around the
+//! [`miniz`][mz] library, which is a one-file pure-C implementation of zlib.
+//!
+//! [def]: https://en.wikipedia.org/wiki/DEFLATE
+//! [mz]: https://code.google.com/p/miniz/
 
 #![crate_name = "flate"]
 #![experimental]