From 611b56dad51fbee9fb1fe5a4e9ef1f8604a2dfa6 Mon Sep 17 00:00:00 2001 From: Vagelis Prokopiou Date: Mon, 19 Feb 2024 11:42:46 +0200 Subject: [PATCH 1/2] Adding full stop --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index ff39f8f53..8db63bfdf 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,7 +4,7 @@ #![warn(rust_2018_idioms)] //! Data-parallelism library that makes it easy to convert sequential -//! computations into parallel +//! computations into parallel. //! //! Rayon is lightweight and convenient for introducing parallelism into existing //! code. It guarantees data-race free executions and takes advantage of From 46aef579330512b3d3ca350adcc18613eb6d2ec9 Mon Sep 17 00:00:00 2001 From: Vagelis Prokopiou Date: Tue, 20 Feb 2024 23:27:08 +0200 Subject: [PATCH 2/2] Applying suggested fix --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 8db63bfdf..09b5df308 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -3,10 +3,10 @@ #![deny(unreachable_pub)] #![warn(rust_2018_idioms)] -//! Data-parallelism library that makes it easy to convert sequential +//! Rayon is a data-parallelism library that makes it easy to convert sequential //! computations into parallel. //! -//! Rayon is lightweight and convenient for introducing parallelism into existing +//! It is lightweight and convenient for introducing parallelism into existing //! code. It guarantees data-race free executions and takes advantage of //! parallelism when sensible, based on work-load at runtime. //!