Skip to content

Commit ddf1846

Browse files
authored
Fix typos in docs (v2) (#2263)
1 parent 0aa0a00 commit ddf1846

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Rx.NET/Documentation/IntroToRx/02_KeyTypes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ And some examples of some sources that might make good cold observables:
8787
* events generated based on an algorithm, such as [`Observable.Generate`](03_CreatingObservableSequences.md#observablegenerate) produces
8888
* a factory for an asynchronous operation, such as [`FromAsync`](03_CreatingObservableSequences.md#from-task) returns
8989
* events produced by running conventional code such as a loop; you can create such sources with [`Observable.Create`](03_CreatingObservableSequences.md#observablecreate)
90-
* a streaming event provides such as Azure Event Hub or Kafka (or any other streaming-style source which holds onto events from the past to be able to deliver events from a particular moment in the stream; so _not_ an event source in the Azure Event Grid style)
90+
* a streaming event provider such as Azure Event Hub or Kafka (or any other streaming-style source which holds onto events from the past to be able to deliver events from a particular moment in the stream; so _not_ an event source in the Azure Event Grid style)
9191

9292
Not all sources are strictly completely _hot_ or _cold_. For example, you could imagine a slight variation on a live `IObservable<Trade>` where the source always reports the most recent trade to new subscribers. Subscribers can count on immediately receiving something, and will then be kept up to date as new information arrives. The fact that new subscribers will always receive (potentially quite old) information is a _cold_-like characteristic, but it's only that first event that is _cold_. It's still likely that a brand new subscriber will have missed lots of information that would have been available to earlier subscribers, making this source more _hot_ than _cold_.
9393

Rx.NET/Documentation/IntroToRx/03_CreatingObservableSequences.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1004,7 +1004,7 @@ public static IObservable<T> ToObservableOversimplified<T>(this IEnumerable<T> s
10041004
o.OnNext(item);
10051005
}
10061006

1007-
o.OnComplete();
1007+
o.OnCompleted();
10081008

10091009
// Incorrectly ignoring unsubscription.
10101010
return Disposable.Empty;

0 commit comments

Comments
 (0)