docs(readme): name the Rx-compatible alias for every factory - #188
Merged
Conversation
ChrisPulman
approved these changes
Sep 10, 2026
The factory mapping listed only the Primitives name for most rows, so a reader migrating from System.Reactive could not tell that the Rx name is available too. Generate, If, Case, Concat, Merge, Switch and OnErrorResumeNext had no row at all. Co-authored-by: Dong <nevermore.wd@me.com>
glennawatson
force-pushed
the
patch-1
branch
from
September 12, 2026 06:16
0f45717 to
30e03fd
Compare
Contributor
|
@NeverMorewd apologies - some unrelated commits landed on your branch and left it conflicting. They have been moved off, so this is back to your README change, rebased and green. You were right that |
Contributor
|
@ChrisPulman five of your commits landed on this contributor's fork branch rather than your own - looks like an agent running without sandboxing. Nothing lost: they are on |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What kind of change does this PR introduce?
Docs update.
What is the new behavior?
The factory mapping names the Rx-compatible alias alongside the Primitives name, for every row that has one.
Observable.Interval(period)listsSignal.Pulse,Signal.EveryandSignal.Interval.Return,Empty,Never,Throw,Range,Repeat,Defer,UsingandTimer, each of which also ships under its Rx name.Generate,If,Case,Concat,Merge,SwitchandOnErrorResumeNext.What is the current behavior?
The table gave only the Primitives name for most rows, so a reader migrating from System.Reactive could not tell from it that the Rx name resolves too, and the factories above were absent.
What might this PR break?
None. Documentation only.
Checklist
mainbranchAdditional information
Every alias named here was checked against the
Signal{RxAliases}sources, so each one exists with the signature shown.