From 378868ed4f90186353d7226db17379815e6d5205 Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Wed, 13 May 2015 10:47:33 -0400 Subject: [PATCH] Writer -> Write in macro docs Fixes #25355 --- src/libcore/macros.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/macros.rs b/src/libcore/macros.rs index 54877c070cb..64eb75ea530 100644 --- a/src/libcore/macros.rs +++ b/src/libcore/macros.rs @@ -167,7 +167,7 @@ macro_rules! try { }) } -/// Use the `format!` syntax to write data into a buffer of type `&mut Writer`. +/// Use the `format!` syntax to write data into a buffer of type `&mut Write`. /// See `std::fmt` for more information. /// /// # Examples