Skip to content

Commit 610f639

Browse files
committed
fix wording in readme
1 parent 0c1af0a commit 610f639

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ Extensions for the [Fluent Assertions](https://www.fluentassertions.com) for tes
1111
var observable = Observable.Empty<Unit>();
1212

1313
// observe the sequence
14-
using var observer = observable.Observe();
14+
using var observedSequence = observable.Observe();
1515

1616
// assert the behaviour of the sequence
17-
observer.Should().Complete();
17+
observedSequence.Should().Complete();
1818

1919
```
2020

0 commit comments

Comments
 (0)