Closed Binero closed 7 years ago
Some re-exports seem to not be shown in the rustc output. This is especially evident in the amethyst crate.
Examples:
amethyst_core::transform::bundle::TransformBundle is re-exported as:
amethyst_core::transform::bundle::TransformBundle
amethyst_core::transform::TransformBundle
amethyst_core::TransformBundle
amethyst::core::TransformBundle
amethsyt::core::transform::TransformBundle
amethsyt::core::transform::bundle::TransformBundle
Yet none of these show up in the generated documentation.
amethyst::State is re-exported as ametyst::prelude::State, and this does show in the generated documentation.
amethyst::State
ametyst::prelude::State
This might also be the cause of https://github.com/rust-lang-nursery/rls/issues/505.
Wrong repo :)
Some re-exports seem to not be shown in the rustc output. This is especially evident in the amethyst crate.
Examples:
amethyst_core::transform::bundle::TransformBundle
is re-exported as:amethyst_core::transform::TransformBundle
amethyst_core::TransformBundle
amethyst::core::TransformBundle
amethsyt::core::transform::TransformBundle
amethsyt::core::transform::bundle::TransformBundle
Yet none of these show up in the generated documentation.
amethyst::State
is re-exported asametyst::prelude::State
, and this does show in the generated documentation.This might also be the cause of https://github.com/rust-lang-nursery/rls/issues/505.