Fix docs to use semicolons instead of slashes
This commit is contained in:
parent
752c4805e4
commit
9fc96ea5c3
1 changed files with 2 additions and 2 deletions
|
@ -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 {
|
||||||
|
|
Loading…
Add table
Reference in a new issue