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.