diff options
| author | Tyler Mandry <tmandry@gmail.com> | 2020-09-09 15:05:51 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-09 15:05:51 -0700 |
| commit | d0c2a2d37c5c2a2fcec73e5997b390b383635fb3 (patch) | |
| tree | 69246c2f09cc07c2d1a10d26c75d11a03fbd8399 | |
| parent | bab09684b4c39605ca50e5512403020ab010bb8e (diff) | |
| parent | 3a3a08585f0a0240c7b73efd5c77e78d2af38755 (diff) | |
| download | rust-d0c2a2d37c5c2a2fcec73e5997b390b383635fb3.tar.gz rust-d0c2a2d37c5c2a2fcec73e5997b390b383635fb3.zip | |
Rollup merge of #76430 - pickfire:patch-7, r=steveklabnik
Add align to rustc-attrs unstable book
| -rw-r--r-- | src/doc/unstable-book/src/language-features/rustc-attrs.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/unstable-book/src/language-features/rustc-attrs.md b/src/doc/unstable-book/src/language-features/rustc-attrs.md index 2967200faf8..1d9409ee9e4 100644 --- a/src/doc/unstable-book/src/language-features/rustc-attrs.md +++ b/src/doc/unstable-book/src/language-features/rustc-attrs.md @@ -13,8 +13,8 @@ The `rustc_attrs` feature allows debugging rustc type layouts by using with `cargo check`) as an alternative to `rustc -Z print-type-sizes` that is way more verbose. -Options provided by `#[rustc_layout(...)]` are `debug`, `size`, `abi`. -Note that it only work best with sized type without generics. +Options provided by `#[rustc_layout(...)]` are `debug`, `size`, `align`, +`abi`. Note that it only works on sized types without generics. ## Examples |
