From 4200abcb3dd73142a83130e92660ddff9e136cd7 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 0b9fc250636f4..b555c966d2d0e 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