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-collections.git

commit 0cdb2212763ee654a43b5d48c0b399f702965cd2
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Sep 29 19:32:53 2024 -0400

    Site and bloom filters
---
 src/site/markdown/bloomFilters.md |  4 +++-
 src/site/xdoc/index.xml           | 11 +++++------
 2 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/src/site/markdown/bloomFilters.md 
b/src/site/markdown/bloomFilters.md
index 48227d323..df8b56b94 100644
--- a/src/site/markdown/bloomFilters.md
+++ b/src/site/markdown/bloomFilters.md
@@ -16,10 +16,12 @@
 -->
  # Bloom filters
 
-Bloom filters were added to commons collections in version 4.5.
+Bloom filters classes and interfaces are available starting in 4.5.0.
 
 The documentation comprises four parts:
  * [An introduction](bloomFilters/intro.html) to Bloom filters.
  * The [Commons Collections implementations](bloomFilters/implementation.html).
  * [Unusual usage and advanced implementations](bloomFilters/advanced.html).
  * Using [Bloom filters for indexing](bloomFilters/multidimensional.html).
+ 
+Read the package 
[Javadoc](apidocs/org/apache/commons/collections4/bloomfilter/package-summary.html).
diff --git a/src/site/xdoc/index.xml b/src/site/xdoc/index.xml
index fa249da82..cf14c0cb8 100644
--- a/src/site/xdoc/index.xml
+++ b/src/site/xdoc/index.xml
@@ -25,7 +25,7 @@
 <section name="Commons Collections">
 <p>
 The <a href="https://docs.oracle.com/javase/tutorial/collections/";>Java 
Collections Framework</a>
-was a major addition in JDK 1.2.
+was a major addition in Java 1.2.
 It added many powerful data structures that accelerate development of most 
significant Java applications.
 Since that time it has become the recognised standard for collection handling 
in Java.
 </p>
@@ -35,7 +35,7 @@ There are many features, including:
 <ul>
 <li>Bag interface for collections that have a number of copies of each 
object</li>
 <li>BidiMap interface for maps that can be looked up from value to key as well 
and key to value</li>
-<li>Bloom filter classes and interfaces</li>
+<li><a href="bloomFilters.html">Bloom filter</a> classes and interfaces</li>
 <li>MapIterator interface to provide simple and quick iteration over maps</li>
 <li>Transforming decorators that alter each object as it is added to the 
collection</li>
 <li>Composite collections that make multiple collections look like one</li>
@@ -58,10 +58,9 @@ as are various <a href="project-reports.html">project 
reports</a>.
 The Javadoc API documents are available online:
 </p>
 <ul>
-<li>The <a href="javadocs/api-4.4/index.html">current release 4.4</a></li>
+<li>The <a href="apidocs/index.html">current release</a></li>
 <li>The latest 3.x release - <a href="javadocs/api-3.2.2/index.html">version 
3.2.2</a></li>
 <li>The latest 2.x release - <a href="javadocs/api-2.1.1/index.html">version 
2.1.1</a></li>
-<li>The <a href="apidocs/index.html">latest from repository sources</a></li>
 </ul>
 <p>
 The <a href="scm.html">source repository</a> can be
@@ -72,9 +71,9 @@ The <a href="scm.html">source repository</a> can be
 <!-- ================================================== -->
 <section name="Releases">
 <p>
-The latest version is 4.4 -
+The latest version is available:
 <a 
href="https://commons.apache.org/collections/download_collections.cgi";>Download 
now!</a><br />
-It is built for Java 8 and later, and the <a href="release_4_4.html">release 
notes</a> are also available.
+It is built for Java 8 and later, and the <a 
href="/changes-report.html">release notes</a> are also available.
 </p>
 <p>
 For previous releases, see the <a 
href="https://archive.apache.org/dist/commons/collections/";>Apache Archive</a>

Reply via email to