File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -58,11 +58,11 @@ use proc_macro::TokenStream;
58
58
///
59
59
/// # Supported argument types
60
60
/// - `type`: type which implements the [`Module`] trait (required).
61
- /// - `name`: byte array of the name of the kernel module (required).
62
- /// - `author`: byte array of the author of the kernel module.
63
- /// - `description`: byte array of the description of the kernel module.
64
- /// - `license`: byte array of the license of the kernel module (required).
65
- /// - `alias`: byte array of alias name of the kernel module.
61
+ /// - `name`: ASCII string literal of the name of the kernel module (required).
62
+ /// - `author`: string literal of the author of the kernel module.
63
+ /// - `description`: string literal of the description of the kernel module.
64
+ /// - `license`: ASCII string literal of the license of the kernel module (required).
65
+ /// - `alias`: array of ASCII string literals of the alias names of the kernel module.
66
66
#[ proc_macro]
67
67
pub fn module ( ts : TokenStream ) -> TokenStream {
68
68
module:: module ( ts)
You can’t perform that action at this time.
0 commit comments