From 6b442109e3dc40e209d5279d9827943279413cac Mon Sep 17 00:00:00 2001 From: Bradley Grainger Date: Fri, 14 Apr 2023 09:25:56 -0700 Subject: [PATCH] Combine README sentences into one line. The NuGet preview of the README inserts line breaks between these sentences (even though Markdown parsing should treat them as part of the same paragraph with no breaks). --- src/PcgRandom/PcgRandom.csproj | 2 +- src/PcgRandom/README.md | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/PcgRandom/PcgRandom.csproj b/src/PcgRandom/PcgRandom.csproj index 26e7743..3882126 100644 --- a/src/PcgRandom/PcgRandom.csproj +++ b/src/PcgRandom/PcgRandom.csproj @@ -22,7 +22,7 @@ true beta.0 true - + true diff --git a/src/PcgRandom/README.md b/src/PcgRandom/README.md index 34ae6ea..02e133e 100644 --- a/src/PcgRandom/README.md +++ b/src/PcgRandom/README.md @@ -1,8 +1,6 @@ ## About -`PcgRandom` provides an implementation of `Random` that generates pseudorandom numbers using the [PCG](http://www.pcg-random.org/) family of random number generators. -It is a .NET port (written entirely in C#) of the [C library](https://www.pcg-random.org/using-pcg-c.html) by Melissa O'Neill. -You can use a `PcgRandom` instance anywhere you would use a `Random` instance. +`PcgRandom` provides an implementation of `Random` that generates pseudorandom numbers using the [PCG](http://www.pcg-random.org/) family of random number generators. It is a .NET port (written entirely in C#) of the [C library](https://www.pcg-random.org/using-pcg-c.html) by Melissa O'Neill. You can use a `PcgRandom` instance anywhere you would use a `Random` instance. ## Basic Usage