From 1bc29924dc8f88c2c118b688f25ffa7c6a212276 Mon Sep 17 00:00:00 2001 From: fort Date: Thu, 5 Jun 2014 18:13:30 -0700 Subject: [PATCH] Remove reference to ~str in documentation --- src/libstd/macros.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/macros.rs b/src/libstd/macros.rs index 0b9fc250636..b555c966d2d 100644 --- a/src/libstd/macros.rs +++ b/src/libstd/macros.rs @@ -212,7 +212,7 @@ macro_rules! unimplemented( () => (fail!("not yet implemented")) ) -/// Use the syntax described in `std::fmt` to create a value of type `~str`. +/// Use the syntax described in `std::fmt` to create a value of type `String`. /// See `std::fmt` for more information. /// /// # Example