Skip to content

Commit

Permalink
Replace 'summary' with '<caption>' in JavaDocs (#2895)
Browse files Browse the repository at this point in the history
  • Loading branch information
pivovarit authored Oct 10, 2024
1 parent 35b0c10 commit 7554f5f
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions vavr/src/main/java/io/vavr/collection/CharSeq.java
Original file line number Diff line number Diff line change
Expand Up @@ -2347,7 +2347,8 @@ public CharSeq replace(CharSequence target, CharSequence replacement) {
* <p>
* The string {@code "boo:and:foo"}, for example, yields the following results with these expressions:
* <blockquote>
* <table cellpadding=1 cellspacing=0 summary="Split examples showing regex and result">
* <table cellpadding=1 cellspacing=0>
* <caption>Split examples showing regex and result</caption>
* <tr>
* <th>Regex</th>
* <th>Result</th>
Expand Down Expand Up @@ -2401,7 +2402,8 @@ public Seq<CharSeq> split(String regex) {
* <p>
* The string {@code "boo:and:foo"}, for example, yields the
* following results with these parameters:
* <blockquote><table cellpadding=1 cellspacing=0 summary="Split example showing regex, limit, and result">
* <blockquote><table cellpadding=1 cellspacing=0>
* <caption>Split example showing regex, limit, and result</caption>
* <tr>
* <th>Regex</th>
* <th>Limit</th>
Expand Down Expand Up @@ -2456,7 +2458,8 @@ public Seq<CharSeq> split(String regex, int limit) {
* {@code CharSeq} may be a different length than the original {@code CharSeq}.
* <p>
* Examples of lowercase mappings are in the following table:
* <table border="1" summary="Lowercase mapping examples showing language code of locale, upper case, lower case, and description">
* <table border="1">
* <caption>Lowercase mapping examples showing language code of locale, upper case, lower case, and description</caption>
* <tr>
* <th>Language Code of Locale</th>
* <th>Upper Case</th>
Expand Down Expand Up @@ -2536,7 +2539,8 @@ public CharSeq toLowerCase() {
* <p>
* Examples of locale-sensitive and 1:M case mappings are in the following table.
*
* <table border="1" summary="Examples of locale-sensitive and 1:M case mappings. Shows Language code of locale, lower case, upper case, and description.">
* <table border="1">
* <caption>Examples of locale-sensitive and 1:M case mappings. Shows Language code of locale, lower case, upper case, and description.</caption>
* <tr>
* <th>Language Code of Locale</th>
* <th>Lower Case</th>
Expand Down Expand Up @@ -2613,7 +2617,8 @@ public CharSeq toUpperCase() {
* <p>
* Examples of locale-sensitive and 1:M case mappings are in the following table.
*
* <table border="1" summary="Examples of locale-sensitive and 1:M case mappings. Shows Language code of locale, lower case, upper case, and description.">
* <table border="1">
* <caption>Examples of locale-sensitive and 1:M case mappings. Shows Language code of locale, lower case, upper case, and description.</caption>
* <tr>
* <th>Language Code of Locale</th>
* <th>Lower Case</th>
Expand Down

0 comments on commit 7554f5f

Please # to comment.