Closed
Description
Compare core vs std version of the same trait:
- http://static.rust-lang.org/doc/master/core/ptr/trait.RawPtr.html
- http://static.rust-lang.org/doc/master/std/ptr/trait.RawPtr.html
The original shows fn null() -> Self;
while the inlined documentation says fn null<T>() -> Self;
in both summary and method detail.