Skip to content

Commit c73b7c6

Browse files
authored
🌍 #119 More minor refinements to readme (#122)
1 parent add8267 commit c73b7c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
GalaxyCheck is a modern property-based testing framework for .NET, in a similar vein to [FsCheck](https://github.com/fscheck/FsCheck). Although GalaxyCheck has been more directly influenced by [fast-check](https://github.com/dubzzz/fast-check), [jqwik](https://github.com/jlink/jqwik) and [Hedgehog](https://github.com/hedgehogqa/fsharp-hedgehog).
44

5-
The library heavily leans on LINQ expressions, allowing seamless integration between generators and properties. In GalaxyCheck, properties _are_ simply generators of tests.
5+
The library uses LINQ expressions to allow seamless integration between generators and properties. In GalaxyCheck, properties _are_ simply generators of tests.
66

77
[![Nuget](https://img.shields.io/nuget/v/galaxycheck)](https://www.nuget.org/packages/GalaxyCheck/)
88

@@ -145,7 +145,7 @@ GalaxyCheck.SampleException : Test case failed to prevent false-positives.
145145
[1] = -1944670218
146146
```
147147

148-
Interestingly, sampling those values revealed a bug in my test. If `x` is close to `int.MaxValue`, `x + 5` may overflow. Therefore, I've learnt that for this test, I need to constrain the generator for `x` a bit more:
148+
Interestingly, sampling those values revealed a bug in our test. If `x` is close to `int.MaxValue`, `x + 5` may overflow. Therefore, we've learnt that for this test, we need to constrain the generator for `x` a bit more:
149149

150150
```csharp
151151
[Sample]

0 commit comments

Comments
 (0)