Skip to content

Commit

Permalink
Combine README sentences into one line.
Browse files Browse the repository at this point in the history
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).
  • Loading branch information
bgrainger committed Apr 14, 2023
1 parent d05edf9 commit 6b44210
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/PcgRandom/PcgRandom.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<MinVerDefaultPreReleaseIdentifiers>beta.0</MinVerDefaultPreReleaseIdentifiers>
<EnablePackageValidation>true</EnablePackageValidation>
</PropertyGroup>
</PropertyGroup>

<PropertyGroup Condition=" '$(GITHUB_ACTIONS)' == 'true' OR '$(APPVEYOR)' == 'True' OR '$(TF_BUILD)' == 'True' ">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
Expand Down
4 changes: 1 addition & 3 deletions src/PcgRandom/README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit 6b44210

Please sign in to comment.