Skip to content

Commit

Permalink
Fix Invalid cref values (#5646)
Browse files Browse the repository at this point in the history
  • Loading branch information
eaba authored Feb 11, 2022
1 parent cf49198 commit 914b69b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public static DistributedPubSubSettings Create(Config config)
public string Role { get; }

/// <summary>
/// The routing logic to use for <see cref="DistributedPubSubMediator.Send"/>.
/// The routing logic to use for <see cref="DistributedPubSubMediator"/>.
/// </summary>
public RoutingLogic RoutingLogic { get; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
/// in <see cref="DeltaPropagationSelector.CreateDeltaPropagation"/>, i.e. never sent to the other replicas.
/// </summary>
public static readonly IReplicatedDelta NoDeltaPlaceholder = NoDelta.Instance;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
/// <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>
/// <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>
Expand Down

0 comments on commit 914b69b

Please sign in to comment.