diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2021-07-24 09:52:02 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-24 09:52:02 -0700 |
| commit | e932113c7eb2805154d8ef0419fa5bffdebe38b8 (patch) | |
| tree | 6d1d9cd2da88c84a91a13a0f11f699f039a2aa8d | |
| parent | 075d3a15b414e8ef1efbed345ee1ae16c0a7407d (diff) | |
| parent | 04634e88a35d8989966c181e326e41ed1973d35e (diff) | |
| download | rust-e932113c7eb2805154d8ef0419fa5bffdebe38b8.tar.gz rust-e932113c7eb2805154d8ef0419fa5bffdebe38b8.zip | |
Rollup merge of #87410 - jonas-schievink:doc-hidden-format_args_nl, r=nagisa
Mark `format_args_nl` as `#[doc(hidden)]` It's described as being internal-only and has no tracking issue, so hide it from public docs.
| -rw-r--r-- | library/core/src/macros/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/library/core/src/macros/mod.rs b/library/core/src/macros/mod.rs index 3ca8f27c79a..07ee589e29f 100644 --- a/library/core/src/macros/mod.rs +++ b/library/core/src/macros/mod.rs @@ -845,6 +845,7 @@ pub(crate) mod builtin { language use and is subject to change" )] #[allow_internal_unstable(fmt_internals)] + #[doc(hidden)] #[rustc_builtin_macro] #[macro_export] macro_rules! format_args_nl { |
