From b984ef19cd677f3db6e27b32ee74b6b11c533544 Mon Sep 17 00:00:00 2001
From: Chris Wong <lambda.fairy@gmail.com>
Date: Sat, 17 Jan 2015 11:53:40 +1300
Subject: [PATCH] Mark `rt` module as `#[doc(hidden)]`

---
 maud/src/lib.rs | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/maud/src/lib.rs b/maud/src/lib.rs
index ef2d12f..a823fa4 100644
--- a/maud/src/lib.rs
+++ b/maud/src/lib.rs
@@ -51,8 +51,7 @@ impl<'a> Markup<'a> {
 
 /// Internal functions used by the `maud_macros` package. You should
 /// never need to call these directly.
-#[experimental = "These functions should not be called directly.
-Use the macros in `maud_macros` instead."]
+#[doc(hidden)]
 pub mod rt {
     use std::fmt;
     use super::Markup;