diff options
author | Valentin Obst <[email protected]> | 2024-01-31 21:23:30 +0100 |
---|---|---|
committer | Miguel Ojeda <[email protected]> | 2024-02-18 21:22:27 +0100 |
commit | af8b18d7404bfb82aa07a09ad5b53d33ab2955d8 (patch) | |
tree | b63cb6c67d617110e395a7d7ffb04bb779e0327a /rust/kernel/ioctl.rs | |
parent | ebf2b8a75a05a1683596aa73c24c1b5bcd5132ae (diff) |
rust: kernel: mark code fragments in docs with backticks
Fix places where comments include code fragments that are not enclosed
in backticks.
Signed-off-by: Valentin Obst <[email protected]>
Reviewed-by: Trevor Gross <[email protected]>
Reviewed-by: Martin Rodriguez Reboredo <[email protected]>
Reviewed-by: Alice Ryhl <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Miguel Ojeda <[email protected]>
Diffstat (limited to 'rust/kernel/ioctl.rs')
-rw-r--r-- | rust/kernel/ioctl.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/kernel/ioctl.rs b/rust/kernel/ioctl.rs index 5987ad6d38a7..cfa7d080b531 100644 --- a/rust/kernel/ioctl.rs +++ b/rust/kernel/ioctl.rs @@ -1,6 +1,6 @@ // SPDX-License-Identifier: GPL-2.0 -//! ioctl() number definitions. +//! `ioctl()` number definitions. //! //! C header: [`include/asm-generic/ioctl.h`](srctree/include/asm-generic/ioctl.h) |