aboutsummaryrefslogtreecommitdiffstats
path: root/rust
diff options
context:
space:
mode:
authorPatrick Blass <patrickblass@mailbox.org>2023-03-03 20:06:29 +0100
committerMiguel Ojeda <ojeda@kernel.org>2023-04-06 21:55:12 +0200
commit88e8c2ec4ab84f9f05ed5af9693a3972baf386c4 (patch)
tree60797620a0a551ae201470f0242825508e4ef4af /rust
parent7e364e56293bb98cae1b55fd835f5991c4e96e7d (diff)
downloadlinux-88e8c2ec4ab84f9f05ed5af9693a3972baf386c4.tar.gz
rust: str: fix requierments->requirements typo
Fix a trivial spelling error in the `rust/kernel/str.rs` file. Fixes: 247b365dc8dc ("rust: add `kernel` crate") Reported-by: Miguel Ojeda <ojeda@kernel.org> Link: https://github.com/Rust-for-Linux/linux/issues/978 Signed-off-by: Patrick Blass <patrickblass@mailbox.org> Reviewed-by: Vincenzo Palazzo <vincenzopalazzodev@gmail.com> [Reworded slightly] Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
Diffstat (limited to 'rust')
-rw-r--r--rust/kernel/str.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/kernel/str.rs b/rust/kernel/str.rs
index b771310fa4a49e..cd3d2a6cf1fc12 100644
--- a/rust/kernel/str.rs
+++ b/rust/kernel/str.rs
@@ -408,7 +408,7 @@ impl RawFormatter {
/// If `pos` is less than `end`, then the region between `pos` (inclusive) and `end`
/// (exclusive) must be valid for writes for the lifetime of the returned [`RawFormatter`].
pub(crate) unsafe fn from_ptrs(pos: *mut u8, end: *mut u8) -> Self {
- // INVARIANT: The safety requierments guarantee the type invariants.
+ // INVARIANT: The safety requirements guarantee the type invariants.
Self {
beg: pos as _,
pos: pos as _,