Closed
Description
When rustdoc generates doc from trait implementation, it could replace generic ones with the one we have. Example with http://doc.rust-lang.org/nightly/std/cell/struct.RefCell.html :
fn eq(&self, other: &RefCell<T>) -> bool;
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool;
This method tests for !=.
eq()
's other argument is &RefCell, but that's not the case for ne()
. It should be fixed.
cc @nox
Metadata
Metadata
Assignees
Labels
No labels