File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -134,10 +134,9 @@ let circle_shape = Circle::new();
134
134
let bounding_box = circle_shape . bounding_box ();
135
135
```
136
136
137
- > ** Edition Differences** : Until the 2018 edition, it was possible to declare
138
- > trait methods with anonymous parameters (e.g. ` fn foo(u8) ` ). This was
139
- > deprecated and disallowed in the 2018 edition. All parameters must have an
140
- > argument name. See [ RFC 1685] ( https://github.com/rust-lang/rfcs/pull/1685 ) .
137
+ > ** Edition Differences** : In the 2015 edition, it is possible to declare trait
138
+ > methods with anonymous parameters (e.g. ` fn foo(u8) ` ). This is deprecated and
139
+ > an error as of the 2018 edition. All parameters must have an argument name.
141
140
142
141
## Associated Types
143
142
You can’t perform that action at this time.
0 commit comments