From d7d5679e6ec9afd4e17e44c8c23a913778d68cb7 Mon Sep 17 00:00:00 2001
From: Chris Wong <lambda.fairy@gmail.com>
Date: Fri, 10 Apr 2015 20:21:09 +1200
Subject: [PATCH] Fix typo

---
 maud_macros/src/render.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/maud_macros/src/render.rs b/maud_macros/src/render.rs
index 5f9fba6..6b73818 100644
--- a/maud_macros/src/render.rs
+++ b/maud_macros/src/render.rs
@@ -70,7 +70,7 @@ impl<'cx> Renderer<'cx> {
         stmts
     }
 
-    /// Pushes an statement, flushing the tail buffer in the process.
+    /// Pushes a statement, flushing the tail buffer in the process.
     fn push(&mut self, stmt: P<Stmt>) {
         self.flush();
         self.stmts.push(stmt);