Fix docs to use semicolons instead of slashes

This commit is contained in:
Chris Wong 2017-08-05 16:42:15 +12:00
parent 752c4805e4
commit 9fc96ea5c3

View file

@ -49,7 +49,7 @@ pub use maud_macros::{html, html_debug};
/// impl Render for Stylesheet { /// impl Render for Stylesheet {
/// fn render(&self) -> Markup { /// fn render(&self) -> Markup {
/// html! { /// html! {
/// link rel="stylesheet" type="text/css" href=(self.0) / /// link rel="stylesheet" type="text/css" href=(self.0);
/// } /// }
/// } /// }
/// } /// }
@ -137,7 +137,7 @@ pub use maud_htmlescape::Escaper;
/// (DOCTYPE) /// (DOCTYPE)
/// html { /// html {
/// head { /// head {
/// meta charset="utf-8" / /// meta charset="utf-8";
/// title "Test page" /// title "Test page"
/// } /// }
/// body { /// body {