diff --git a/src/main/java/gr/james/sampling/package-info.java b/src/main/java/gr/james/sampling/package-info.java index 07f7d3a..df06123 100644 --- a/src/main/java/gr/james/sampling/package-info.java +++ b/src/main/java/gr/james/sampling/package-info.java @@ -34,8 +34,10 @@ * selections of the sampling procedure (implemented in {@code EfraimidisSampling}). As a result, implementations of * this interface may not exhibit identical behavior, as opposed to the {@link gr.james.sampling.RandomSampling} * interface. The contract of this interface is, however, that a higher weight value suggests a higher probability for - * an item to be included in the sample. Implementations may also define certain restrictions on the values of - * {@code weight} and violations will result in {@link gr.james.sampling.IllegalWeightException}. + * an item to be included in the sample. The first case is denoted as P and the second case as W in + * the implementation table below. Implementations may also define certain restrictions on the values of {@code weight} + * and violations will result in {@link gr.james.sampling.IllegalWeightException}. The weight ranges are also available + * in the table. *