From 0e62077bd2abf4ecdcf5cfeb9271e999ee7d85fe Mon Sep 17 00:00:00 2001 From: William Henderson Date: Sat, 9 Oct 2021 11:32:26 +0100 Subject: [PATCH] Added a few commas in the documentation --- src/os/unix/mod.rs | 4 ++-- src/os/windows/mod.rs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/os/unix/mod.rs b/src/os/unix/mod.rs index 9bed0c6..a0b197d 100644 --- a/src/os/unix/mod.rs +++ b/src/os/unix/mod.rs @@ -109,7 +109,7 @@ impl Library { /// /// # Safety /// - /// When a library is loaded initialisation routines contained within the library are executed. + /// When a library is loaded, initialisation routines contained within the library are executed. /// For the purposes of safety, the execution of these routines is conceptually the same calling an /// unknown foreign function and may impose arbitrary requirements on the caller for the call /// to be sound. @@ -156,7 +156,7 @@ impl Library { /// /// # Safety /// - /// When a library is loaded initialisation routines contained within the library are executed. + /// When a library is loaded, initialisation routines contained within the library are executed. /// For the purposes of safety, the execution of these routines is conceptually the same calling an /// unknown foreign function and may impose arbitrary requirements on the caller for the call /// to be sound. diff --git a/src/os/windows/mod.rs b/src/os/windows/mod.rs index 022c19b..fc358aa 100644 --- a/src/os/windows/mod.rs +++ b/src/os/windows/mod.rs @@ -92,7 +92,7 @@ impl Library { /// /// # Safety /// - /// When a library is loaded initialisation routines contained within the library are executed. + /// When a library is loaded, initialisation routines contained within the library are executed. /// For the purposes of safety, the execution of these routines is conceptually the same calling an /// unknown foreign function and may impose arbitrary requirements on the caller for the call /// to be sound. @@ -178,7 +178,7 @@ impl Library { /// /// # Safety /// - /// When a library is loaded initialisation routines contained within the library are executed. + /// When a library is loaded, initialisation routines contained within the library are executed. /// For the purposes of safety, the execution of these routines is conceptually the same calling an /// unknown foreign function and may impose arbitrary requirements on the caller for the call /// to be sound.