diff options
| author | Yuki Okushi <huyuumi.dev@gmail.com> | 2021-03-03 16:27:38 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-03 16:27:38 +0900 |
| commit | 9a827d9f7e3d0f256f832b6f42f87aefa4648d0a (patch) | |
| tree | c6528f7f25f1ac63087eb08c9a3e48cc6c1492a8 /library/std/src/sys/unix/stack_overflow.rs | |
| parent | 35dbef235048f9a2939dc20effe083ca483c37ff (diff) | |
| parent | 41fc58b7b56cbc1bf70b8928ba053110fa65a34b (diff) | |
| download | rust-9a827d9f7e3d0f256f832b6f42f87aefa4648d0a.tar.gz rust-9a827d9f7e3d0f256f832b6f42f87aefa4648d0a.zip | |
Rollup merge of #81223 - GuillaumeGomez:generate-redirect-map, r=jyn514
[rustdoc] Generate redirect map file
Fixes #81134.
So with this code:
```rust
#![crate_name = "foo"]
pub use private::Quz;
pub use hidden::Bar;
mod private {
pub struct Quz;
}
#[doc(hidden)]
pub mod hidden {
pub struct Bar;
}
#[macro_export]
macro_rules! foo {
() => {}
}
```
It generates:
```json
{
"foo/macro.foo!.html": "foo/macro.foo.html",
"foo/private/struct.Quz.html": "foo/struct.Quz.html",
"foo/hidden/struct.Bar.html": "foo/struct.Bar.html"
}
```
Do the pathes look as you expected ````@pietroalbini?````
r? ````@jyn514````
Diffstat (limited to 'library/std/src/sys/unix/stack_overflow.rs')
0 files changed, 0 insertions, 0 deletions
