From: Rahiel Kasim Date: Tue, 26 Jul 2016 09:14:46 +0000 (+0200) Subject: doc/book/trait-objects: remove empty lines at start of examples X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=47db8deff6b50512d1c6e702d4df6bd9027efe04;p=rust.git doc/book/trait-objects: remove empty lines at start of examples --- diff --git a/src/doc/book/trait-objects.md b/src/doc/book/trait-objects.md index b31a34a0425..b1aee579aab 100644 --- a/src/doc/book/trait-objects.md +++ b/src/doc/book/trait-objects.md @@ -123,7 +123,6 @@ dispatch with trait objects by casting: # trait Foo { fn method(&self) -> String; } # impl Foo for u8 { fn method(&self) -> String { format!("u8: {}", *self) } } # impl Foo for String { fn method(&self) -> String { format!("string: {}", *self) } } - fn do_something(x: &Foo) { x.method(); } @@ -140,7 +139,6 @@ or by coercing: # trait Foo { fn method(&self) -> String; } # impl Foo for u8 { fn method(&self) -> String { format!("u8: {}", *self) } } # impl Foo for String { fn method(&self) -> String { format!("string: {}", *self) } } - fn do_something(x: &Foo) { x.method(); }