We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c1af0a commit 610f639Copy full SHA for 610f639
README.md
@@ -11,10 +11,10 @@ Extensions for the [Fluent Assertions](https://www.fluentassertions.com) for tes
11
var observable = Observable.Empty<Unit>();
12
13
// observe the sequence
14
-using var observer = observable.Observe();
+using var observedSequence = observable.Observe();
15
16
// assert the behaviour of the sequence
17
-observer.Should().Complete();
+observedSequence.Should().Complete();
18
19
```
20
0 commit comments