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 5fe7c49 Standardize on American English spelling of 'behavior'. 5fe7c49 is described below commit 5fe7c491b1d1dfc15b660779ad6616cf8f5e1a2b Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Mon Mar 30 15:34:49 2020 -0400 Standardize on American English spelling of 'behavior'. --- .../src/test/java/org/apache/commons/rng/core/BaseProviderTest.java | 2 +- src/main/resources/checkstyle/checkstyle.xml | 2 +- src/site/apt/userguide/rng.apt | 2 +- src/site/apt/userguide/why_not_java_random.apt | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/commons-rng-core/src/test/java/org/apache/commons/rng/core/BaseProviderTest.java b/commons-rng-core/src/test/java/org/apache/commons/rng/core/BaseProviderTest.java index 8abcbe9..4b07cea 100644 --- a/commons-rng-core/src/test/java/org/apache/commons/rng/core/BaseProviderTest.java +++ b/commons-rng-core/src/test/java/org/apache/commons/rng/core/BaseProviderTest.java @@ -81,7 +81,7 @@ public class BaseProviderTest { } /** - * Dummy class for checking the behaviour of the IntProvider. Tests: + * Dummy class for checking the behaviorof the IntProvider. Tests: * <ul> * <li>an incomplete implementation</li> * <li>{@code fillState} methods with "protected" access</li> diff --git a/src/main/resources/checkstyle/checkstyle.xml b/src/main/resources/checkstyle/checkstyle.xml index 4c71c7f..42b2a8d 100644 --- a/src/main/resources/checkstyle/checkstyle.xml +++ b/src/main/resources/checkstyle/checkstyle.xml @@ -22,7 +22,7 @@ "https://checkstyle.org/dtds/configuration_1_3.dtd"> <!-- - Commons RNG customization of default Checkstyle behaviour: + Commons RNG customization of default Checkstyle behavior: https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/sun_checks.xml --> <module name="Checker"> diff --git a/src/site/apt/userguide/rng.apt b/src/site/apt/userguide/rng.apt index f22e6e6..117c579 100644 --- a/src/site/apt/userguide/rng.apt +++ b/src/site/apt/userguide/rng.apt @@ -215,7 +215,7 @@ UniformRandomProvider rng = RandomSource.create(RandomSource.ISAAC, new long[] { [] - In both cases, the behaviour is not standard but should not change between releases of the library + In both cases, the behavior is not standard but should not change between releases of the library (bugs notwithstanding). Each RNG implementation has a single "native" seed; when the seed argument passed diff --git a/src/site/apt/userguide/why_not_java_random.apt b/src/site/apt/userguide/why_not_java_random.apt index a26b773..f2a607f 100644 --- a/src/site/apt/userguide/why_not_java_random.apt +++ b/src/site/apt/userguide/why_not_java_random.apt @@ -76,7 +76,7 @@ * As a concrete class, <<<java.util.Random>>> contains code tied to "implementation details"; it is hard to modify it without changing - long-established behaviour, even if it would be to fix a + long-established behavior, even if it would be to fix a {{{https://bugs.openjdk.java.net/browse/JDK-8154225}bug}}.