Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
oli-obk committed Apr 18, 2018
1 parent 60962a5 commit af24193
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/macros.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// rustfmt doesn't like this file (lines too long, too hard to fix)
#![cfg_attr(rustfmt, rustfmt_skip)]

/// Crate a new html template
/// Create a new html template
#[macro_export]
macro_rules! html {
($($inner:tt)*) => {{
Expand All @@ -15,7 +15,7 @@ macro_rules! html {
}}
}

/// Crate a new html template taking ownership of any variables used inside
/// Create a new html template taking ownership of any variables used inside
#[macro_export]
macro_rules! owned_html {
($($inner:tt)*) => {{
Expand All @@ -29,7 +29,7 @@ macro_rules! owned_html {
}}
}

/// Crate a new owned html template.
/// Create a new owned html template.
///
/// This template will be boxed and will own it's environment. If you need to return a template
/// from a function, use this.
Expand Down

0 comments on commit af24193

Please sign in to comment.