rust/src/librustdoc
bors 13037a3727 auto merge of #17163 : pcwalton/rust/impls-next-to-struct, r=alexcrichton
type they provide an implementation for.

This breaks code like:

    mod foo {
        struct Foo { ... }
    }

    impl foo::Foo {
        ...
    }

Change this code to:

    mod foo {
        struct Foo { ... }

        impl Foo {
            ...
        }
    }

Closes #17059.

RFC #155.

[breaking-change]

r? @brson
2014-09-14 08:11:04 +00:00
..
clean rustdoc: fix fallout from using ptr::P. 2014-09-14 04:20:34 +03:00
html librustc: Forbid inherent implementations that aren't adjacent to the 2014-09-13 02:07:39 -07:00
core.rs rustdoc: fix fallout from using ptr::P. 2014-09-14 04:20:34 +03:00
doctree.rs rustdoc: fix fallout from using ptr::P. 2014-09-14 04:20:34 +03:00
externalfiles.rs Allow external html in rustdoc for crates. 2014-06-30 00:03:34 -07:00
flock.rs Unify non-snake-case lints and non-uppercase statics lints 2014-08-30 09:10:05 +12:00
fold.rs librustc: Stop assuming that implementations and traits only contain 2014-08-14 11:40:22 -07:00
lib.rs rustdoc: fix fallout from the addition of a 'tcx lifetime on tcx. 2014-09-08 15:28:25 +03:00
markdown.rs Changed addl_lib_search_paths from HashSet to Vec 2014-09-07 11:42:02 +02:00
passes.rs librustc: Stop assuming that implementations and traits only contain 2014-08-14 11:40:22 -07:00
plugins.rs Remove stage0 attributes. 2014-08-23 02:11:07 -07:00
stability_summary.rs Fix spelling errors and capitalization. 2014-09-03 23:10:38 -04:00
test.rs rustdoc: fix fallout from using ptr::P. 2014-09-14 04:20:34 +03:00
visit_ast.rs rustdoc: fix fallout from using ptr::P. 2014-09-14 04:20:34 +03:00