Skip to content

Commit e414893

Browse files
committed
Remove para on named impls.
1 parent bf82d68 commit e414893

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

doc/rust.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1224,14 +1224,6 @@ impl circle: shape {
12241224
}
12251225
~~~~
12261226

1227-
This defines an implementation named `circle_shape` of trait
1228-
`shape` for type `circle`. The name of the implementation is the name
1229-
by which it is imported and exported, but has no further significance.
1230-
It may be omitted to default to the name of the trait that was
1231-
implemented. Implementation names do not conflict the way other names
1232-
do: multiple implementations with the same name may exist in a scope at
1233-
the same time.
1234-
12351227
It is possible to define an implementation without referring to a
12361228
trait. The methods in such an implementation can only be used
12371229
statically (as direct calls on the values of the type that the

0 commit comments

Comments
 (0)