You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by kw...@apache.org on 2021/03/31 19:27:00 UTC

[jackrabbit-filevault] branch master updated: fix javadoc issue: ul not closed

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

kwin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jackrabbit-filevault.git


The following commit(s) were added to refs/heads/master by this push:
     new 725c9b8  fix javadoc issue: ul not closed
725c9b8 is described below

commit 725c9b8cc702ba5e070e7bdc71798ced3189aa0e
Author: Konrad Windszus <kw...@apache.org>
AuthorDate: Wed Mar 31 21:26:49 2021 +0200

    fix javadoc issue: ul not closed
---
 .../main/java/org/apache/jackrabbit/vault/packaging/VersionRange.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/vault-core/src/main/java/org/apache/jackrabbit/vault/packaging/VersionRange.java b/vault-core/src/main/java/org/apache/jackrabbit/vault/packaging/VersionRange.java
index c6bcf74..09906a3 100644
--- a/vault-core/src/main/java/org/apache/jackrabbit/vault/packaging/VersionRange.java
+++ b/vault-core/src/main/java/org/apache/jackrabbit/vault/packaging/VersionRange.java
@@ -26,7 +26,7 @@ package org.apache.jackrabbit.vault.packaging;
  * <li>or a simple version string consisting of arbitrarily many alphanumeric segments separated by {@code .}. Those segments must not include a {@code ,}. This means
  * everything from the given version will match (i.e. upper bound unlimited).
  * <li>or a real range in the form {@code '['|'('<lowerBound>,(<upperBound>']'|')')}, where {@code []} means inclusive and {@code ()} means exclusive bounds. Both the lowerBound and upperBound must follow the grammar from the simple version string.
- * 
+ * </ul>
  * @since 2.0
  */
 public class VersionRange {