diff options
author | Miguel Ojeda <ojeda@kernel.org> | 2024-07-25 20:46:44 +0200 |
---|---|---|
committer | Miguel Ojeda <ojeda@kernel.org> | 2024-07-29 14:23:54 +0200 |
commit | 0ba521d6948ecb4acf1276494dfed127fe096ca6 (patch) | |
tree | 2654ecc5b7a24c4064435c4771ad160329fa18d9 /rust | |
parent | aacf93e87f0d808ef46e621aa56caea336b4433c (diff) | |
download | linux-0ba521d6948ecb4acf1276494dfed127fe096ca6.tar.gz linux-0ba521d6948ecb4acf1276494dfed127fe096ca6.tar.bz2 linux-0ba521d6948ecb4acf1276494dfed127fe096ca6.zip |
rust: macros: indent list item in `module!`'s docs
Like commit e516211f615f ("rust: macros: indent list item in `paste!`'s
docs"), but for `module!`.
Reviewed-by: Trevor Gross <tmgross@umich.edu>
Link: https://lore.kernel.org/r/20240725184644.135185-1-ojeda@kernel.org
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
Diffstat (limited to 'rust')
-rw-r--r-- | rust/macros/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/macros/lib.rs b/rust/macros/lib.rs index 159e75292970..5be0cb9db3ee 100644 --- a/rust/macros/lib.rs +++ b/rust/macros/lib.rs @@ -94,7 +94,7 @@ use proc_macro::TokenStream; /// - `license`: ASCII string literal of the license of the kernel module (required). /// - `alias`: array of ASCII string literals of the alias names of the kernel module. /// - `firmware`: array of ASCII string literals of the firmware files of -/// the kernel module. +/// the kernel module. #[proc_macro] pub fn module(ts: TokenStream) -> TokenStream { module::module(ts) |