-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Docs: Fix Invalid cref values #5646
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -886,7 +886,7 @@ private NoDelta() { } | |
/// and thereby violating <see cref="IRequireCausualDeliveryOfDeltas"/>. | ||
/// | ||
/// This is used as a placeholder for such `null` delta. It's filtered out | ||
/// in <see cref="DeltaPropagationSelector.CreateDeltaPropagation(ImmutableDictionary{string, Tuple{IReplicatedData, long, long}})"/>, i.e. never sent to the other replicas. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is a "real" invalid cref value issue |
||
/// in <see cref="DeltaPropagationSelector.CreateDeltaPropagation"/>, i.e. never sent to the other replicas. | ||
/// </summary> | ||
public static readonly IReplicatedDelta NoDeltaPlaceholder = NoDelta.Instance; | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -154,10 +154,10 @@ public interface IGetResponse : INoSerializationVerificationNeeded | |
|
||
/// <summary> | ||
/// Tries to return a result of the request, given a replicated collection | ||
/// <paramref name="key"/> used when sending a <see cref="Replicator.Get"/> request. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is a "real" invalid cref value issue |
||
/// <paramref name="key"/> used when sending a <see cref="Replicator"/> request. | ||
/// </summary> | ||
/// <typeparam name="T">Replicated data.</typeparam> | ||
/// <param name="key">Key send originally with a <see cref="Replicator.Get"/> request.</param> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is a "real" invalid cref value issue |
||
/// <param name="key">Key send originally with a <see cref="Replicator"/> request.</param> | ||
/// <exception cref="KeyNotFoundException">Thrown when no value for provided <paramref name="key"/> was found.</exception> | ||
/// <exception cref="TimeoutException">Thrown when response with given consistency didn't arrive within specified timeout.</exception> | ||
/// <returns></returns> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a "real" invalid cref value issue