From 37a02b5f5b26eeb19addbd0d707a507c0aafe5e5 Mon Sep 17 00:00:00 2001 From: Ivan Nikulin Date: Sun, 21 Jan 2024 11:57:22 +0000 Subject: [PATCH] Capitilise the lib name in doc comments --- foundations/src/security/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/foundations/src/security/mod.rs b/foundations/src/security/mod.rs index 657b5ef..3ac36b1 100644 --- a/foundations/src/security/mod.rs +++ b/foundations/src/security/mod.rs @@ -16,7 +16,7 @@ //! //! The crate provides a few [`common_syscall_allow_lists`] to simplify configuration. //! -//! foundations compiles and statically links with [libseccomp], so it doesn't require the lib to be +//! Foundations compiles and statically links with [libseccomp], so it doesn't require the lib to be //! installed. //! //! # Simple case [Spectre] mitigation for x86_64 processors @@ -62,7 +62,7 @@ pub type RawOsErrorNum = u16; pub enum ViolationAction { /// Kill the process. /// - /// Note that even though seccomp API allows to kill individual threads, foundations doesn't + /// Note that even though seccomp API allows to kill individual threads, Foundations doesn't /// expose this action as killing threads without unwinding [can cause UB in Rust]. /// /// [can cause UB in Rust]: https://github.com/rust-lang/unsafe-code-guidelines/issues/211