From e4148932fcab17f6f8bb362df34d7b83e4c57580 Mon Sep 17 00:00:00 2001 From: Graydon Hoare Date: Wed, 26 Sep 2012 10:56:23 -0700 Subject: [PATCH] Remove para on named impls. --- doc/rust.md | 8 -------- 1 file changed, 8 deletions(-) diff --git a/doc/rust.md b/doc/rust.md index 15a80c63fade..ccc5a532cdd4 100644 --- a/doc/rust.md +++ b/doc/rust.md @@ -1224,14 +1224,6 @@ impl circle: shape { } ~~~~ -This defines an implementation named `circle_shape` of trait -`shape` for type `circle`. The name of the implementation is the name -by which it is imported and exported, but has no further significance. -It may be omitted to default to the name of the trait that was -implemented. Implementation names do not conflict the way other names -do: multiple implementations with the same name may exist in a scope at -the same time. - It is possible to define an implementation without referring to a trait. The methods in such an implementation can only be used statically (as direct calls on the values of the type that the