You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by th...@apache.org on 2022/06/07 03:31:22 UTC

[tapestry-5] branch master updated: TAP5-2723: fixing even more JavaDoc errors

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

thiagohp pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tapestry-5.git


The following commit(s) were added to refs/heads/master by this push:
     new 4fbc9dc4d TAP5-2723: fixing even more JavaDoc errors
4fbc9dc4d is described below

commit 4fbc9dc4d749052656ef867140fad4f67e3cb4f1
Author: Thiago H. de Paula Figueiredo <th...@arsmachina.com.br>
AuthorDate: Tue Jun 7 00:31:10 2022 -0300

    TAP5-2723: fixing even more JavaDoc errors
---
 .../apache/tapestry5/ioc/internal/services/cron/CronExpression.java    | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/services/cron/CronExpression.java b/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/services/cron/CronExpression.java
index 85f333b67..77630245c 100644
--- a/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/services/cron/CronExpression.java
+++ b/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/services/cron/CronExpression.java
@@ -26,6 +26,7 @@ import java.util.*;
  * separated by white space. The fields respectively are described as follows:
  * 
  * <table>
+ * <caption>Supported Cron fields</caption>
  * <tr>
  * <th style="text-align: left;">Field Name</th>
  * <th style="text-align: left;">&nbsp;</th>
@@ -163,6 +164,7 @@ import java.util.*;
  * 
  * <p>
  * <b>NOTES:</b>
+ * </p>
  * <ul>
  * <li>Support for specifying both a day-of-week and a day-of-month value is
  * not complete (you'll need to use the '?' character in one of these fields).
@@ -175,7 +177,6 @@ import java.util.*;
  * interpretation CronExpression chooses. An example would be 
  * "0 0 14-6 ? * FRI-MON". </li>
  * </ul>
- * </p>
  * 
  * 
  * @author Sharada Jambula, James House