From 609825535af27f5acac3a8eb838447f2c4b4cff9 Mon Sep 17 00:00:00 2001 From: Ebere Abanonu Date: Fri, 11 Feb 2022 19:45:29 +0100 Subject: [PATCH] Fix Invalid cref values --- .../PublishSubscribe/DistributedPubSubSettings.cs | 2 +- src/contrib/cluster/Akka.DistributedData/Internal/Internal.cs | 2 +- .../cluster/Akka.DistributedData/Replicator.Messages.cs | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/contrib/cluster/Akka.Cluster.Tools/PublishSubscribe/DistributedPubSubSettings.cs b/src/contrib/cluster/Akka.Cluster.Tools/PublishSubscribe/DistributedPubSubSettings.cs index ce27d7cbb7c..d99d28e4c59 100644 --- a/src/contrib/cluster/Akka.Cluster.Tools/PublishSubscribe/DistributedPubSubSettings.cs +++ b/src/contrib/cluster/Akka.Cluster.Tools/PublishSubscribe/DistributedPubSubSettings.cs @@ -84,7 +84,7 @@ public static DistributedPubSubSettings Create(Config config) public string Role { get; } /// - /// The routing logic to use for . + /// The routing logic to use for . /// public RoutingLogic RoutingLogic { get; } diff --git a/src/contrib/cluster/Akka.DistributedData/Internal/Internal.cs b/src/contrib/cluster/Akka.DistributedData/Internal/Internal.cs index f0fd7b16bab..df6fb456c78 100644 --- a/src/contrib/cluster/Akka.DistributedData/Internal/Internal.cs +++ b/src/contrib/cluster/Akka.DistributedData/Internal/Internal.cs @@ -886,7 +886,7 @@ private NoDelta() { } /// and thereby violating . /// /// This is used as a placeholder for such `null` delta. It's filtered out - /// in , i.e. never sent to the other replicas. + /// in , i.e. never sent to the other replicas. /// public static readonly IReplicatedDelta NoDeltaPlaceholder = NoDelta.Instance; diff --git a/src/contrib/cluster/Akka.DistributedData/Replicator.Messages.cs b/src/contrib/cluster/Akka.DistributedData/Replicator.Messages.cs index 8c7880ad900..818fe038df0 100644 --- a/src/contrib/cluster/Akka.DistributedData/Replicator.Messages.cs +++ b/src/contrib/cluster/Akka.DistributedData/Replicator.Messages.cs @@ -154,10 +154,10 @@ public interface IGetResponse : INoSerializationVerificationNeeded /// /// Tries to return a result of the request, given a replicated collection - /// used when sending a request. + /// used when sending a request. /// /// Replicated data. - /// Key send originally with a request. + /// Key send originally with a request. /// Thrown when no value for provided was found. /// Thrown when response with given consistency didn't arrive within specified timeout. ///