Skip to content

Commit 6b44210

Browse files
committed
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).
1 parent d05edf9 commit 6b44210

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/PcgRandom/PcgRandom.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<EmbedUntrackedSources>true</EmbedUntrackedSources>
2323
<MinVerDefaultPreReleaseIdentifiers>beta.0</MinVerDefaultPreReleaseIdentifiers>
2424
<EnablePackageValidation>true</EnablePackageValidation>
25-
</PropertyGroup>
25+
</PropertyGroup>
2626

2727
<PropertyGroup Condition=" '$(GITHUB_ACTIONS)' == 'true' OR '$(APPVEYOR)' == 'True' OR '$(TF_BUILD)' == 'True' ">
2828
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>

src/PcgRandom/README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
## About
22

3-
`PcgRandom` provides an implementation of `Random` that generates pseudorandom numbers using the [PCG](http://www.pcg-random.org/) family of random number generators.
4-
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.
5-
You can use a `PcgRandom` instance anywhere you would use a `Random` instance.
3+
`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.
64

75
## Basic Usage
86

0 commit comments

Comments
 (0)