From a4c43dbd3ad4a37e6db9a0ca458bd3213e06fc88 Mon Sep 17 00:00:00 2001 From: Chris Wong <lambda.fairy@gmail.com> Date: Sun, 25 Sep 2016 12:30:12 +1300 Subject: [PATCH] Documentation nit: "input data" -> "value" --- maud/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maud/src/lib.rs b/maud/src/lib.rs index 812269b..8594ac5 100644 --- a/maud/src/lib.rs +++ b/maud/src/lib.rs @@ -43,7 +43,7 @@ impl Render for str { } /// Represents a type that can be rendered as HTML, where the rendering -/// operation must consume the input data. +/// operation must consume the value. pub trait RenderOnce { fn render_once(self, &mut fmt::Write) -> fmt::Result; }