diff --git a/modules/core/src/main/java/org/apache/ignite/internal/management/cache/IdleVerifyException.java b/modules/core/src/main/java/org/apache/ignite/internal/management/cache/IdleVerifyException.java index e54fe3ad2a0b9..9f01e6d960caf 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/management/cache/IdleVerifyException.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/management/cache/IdleVerifyException.java @@ -23,7 +23,7 @@ import org.apache.ignite.internal.util.typedef.F; /** - * This exception is used to collect exceptions occured in {@link VerifyBackupPartitionsTask} execution. + * This exception is used to collect exceptions that occurred in {@link VerifyBackupPartitionsTask} execution. */ public class IdleVerifyException extends IgniteException { /** */ diff --git a/modules/core/src/main/java/org/apache/ignite/mxbean/MetricsMxBean.java b/modules/core/src/main/java/org/apache/ignite/mxbean/MetricsMxBean.java index b9e0d94bd95d8..513381f5d437a 100644 --- a/modules/core/src/main/java/org/apache/ignite/mxbean/MetricsMxBean.java +++ b/modules/core/src/main/java/org/apache/ignite/mxbean/MetricsMxBean.java @@ -46,7 +46,7 @@ public void resetMetrics( * * @param name Metric name. * @param rateTimeInterval New rate time interval. - * @throws IgniteException If some error occured. + * @throws IgniteException If some error occurred. */ @MXBeanDescription("Configure hitrate metric.") public void configureHitRateMetric( @@ -60,7 +60,7 @@ public void configureHitRateMetric( * * @param name Metric name. * @param bounds New bounds. - * @throws IgniteException If some error occured. + * @throws IgniteException If some error occurred. */ @MXBeanDescription("Configure histogram metric.") public void configureHistogramMetric( diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/Cache/ICache.cs b/modules/platforms/dotnet/Apache.Ignite.Core/Cache/ICache.cs index 853a90b766e63..a554c485ed0eb 100644 --- a/modules/platforms/dotnet/Apache.Ignite.Core/Cache/ICache.cs +++ b/modules/platforms/dotnet/Apache.Ignite.Core/Cache/ICache.cs @@ -836,7 +836,7 @@ public interface ICache : IEnumerable> /// The processor. /// The argument. /// Result of the processing. - /// If an exception has occured during processing. + /// If an exception has occurred during processing. TRes Invoke(TK key, ICacheEntryProcessor processor, TArg arg); /// @@ -851,7 +851,7 @@ public interface ICache : IEnumerable> /// The processor. /// The argument. /// Result of the processing. - /// If an exception has occured during processing. + /// If an exception has occurred during processing. Task InvokeAsync(TK key, ICacheEntryProcessor processor, TArg arg); /// @@ -878,7 +878,7 @@ public interface ICache : IEnumerable> /// defined by the implementation. /// No mappings will be returned for processors that return a null value for a key. /// - /// If an exception has occured during processing. + /// If an exception has occurred during processing. ICollection> InvokeAll(IEnumerable keys, ICacheEntryProcessor processor, TArg arg); @@ -906,7 +906,7 @@ ICollection> InvokeAll(IEnumera /// defined by the implementation. /// No mappings will be returned for processors that return a null value for a key. /// - /// If an exception has occured during processing. + /// If an exception has occurred during processing. Task>> InvokeAllAsync(IEnumerable keys, ICacheEntryProcessor processor, TArg arg);