You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2023/06/24 17:44:22 UTC

[commons-rng] branch master updated: Spelling

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-rng.git


The following commit(s) were added to refs/heads/master by this push:
     new 64ad1e63 Spelling
64ad1e63 is described below

commit 64ad1e63c9895e974d57fff925d6be896c7a9975
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Jun 24 13:44:18 2023 -0400

    Spelling
---
 .../main/java/org/apache/commons/rng/sampling/CompositeSamplers.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/commons-rng-sampling/src/main/java/org/apache/commons/rng/sampling/CompositeSamplers.java b/commons-rng-sampling/src/main/java/org/apache/commons/rng/sampling/CompositeSamplers.java
index d46df6b6..41a62d43 100644
--- a/commons-rng-sampling/src/main/java/org/apache/commons/rng/sampling/CompositeSamplers.java
+++ b/commons-rng-sampling/src/main/java/org/apache/commons/rng/sampling/CompositeSamplers.java
@@ -476,7 +476,7 @@ public final class CompositeSamplers {
             // otherwise the sampler must be checked.
             if (specialisation == Specialisation.SHARED_STATE_SAMPLER &&
                 !(factory instanceof DiscreteProbabilitySampler)) {
-                // If the factory was user defined then clone the weights as they may be required
+                // If the factory was user-defined then clone the weights as they may be required
                 // to create a SharedStateDiscreteProbabilitySampler.
                 final DiscreteSampler sampler = factory.create(rng, weights.clone());
                 return sampler instanceof SharedStateDiscreteSampler ?