Skip to content

Commit 914b69b

Browse files
authored
Fix Invalid cref values (#5646)
1 parent cf49198 commit 914b69b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/contrib/cluster/Akka.Cluster.Tools/PublishSubscribe/DistributedPubSubSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public static DistributedPubSubSettings Create(Config config)
8484
public string Role { get; }
8585

8686
/// <summary>
87-
/// The routing logic to use for <see cref="DistributedPubSubMediator.Send"/>.
87+
/// The routing logic to use for <see cref="DistributedPubSubMediator"/>.
8888
/// </summary>
8989
public RoutingLogic RoutingLogic { get; }
9090

src/contrib/cluster/Akka.DistributedData/Internal/Internal.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -886,7 +886,7 @@ private NoDelta() { }
886886
/// and thereby violating <see cref="IRequireCausualDeliveryOfDeltas"/>.
887887
///
888888
/// This is used as a placeholder for such `null` delta. It's filtered out
889-
/// in <see cref="DeltaPropagationSelector.CreateDeltaPropagation(ImmutableDictionary{string, Tuple{IReplicatedData, long, long}})"/>, i.e. never sent to the other replicas.
889+
/// in <see cref="DeltaPropagationSelector.CreateDeltaPropagation"/>, i.e. never sent to the other replicas.
890890
/// </summary>
891891
public static readonly IReplicatedDelta NoDeltaPlaceholder = NoDelta.Instance;
892892

src/contrib/cluster/Akka.DistributedData/Replicator.Messages.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,10 +154,10 @@ public interface IGetResponse : INoSerializationVerificationNeeded
154154

155155
/// <summary>
156156
/// Tries to return a result of the request, given a replicated collection
157-
/// <paramref name="key"/> used when sending a <see cref="Replicator.Get"/> request.
157+
/// <paramref name="key"/> used when sending a <see cref="Replicator"/> request.
158158
/// </summary>
159159
/// <typeparam name="T">Replicated data.</typeparam>
160-
/// <param name="key">Key send originally with a <see cref="Replicator.Get"/> request.</param>
160+
/// <param name="key">Key send originally with a <see cref="Replicator"/> request.</param>
161161
/// <exception cref="KeyNotFoundException">Thrown when no value for provided <paramref name="key"/> was found.</exception>
162162
/// <exception cref="TimeoutException">Thrown when response with given consistency didn't arrive within specified timeout.</exception>
163163
/// <returns></returns>

0 commit comments

Comments
 (0)