Skip to content

Commit 7554f5f

Browse files
authored
Replace 'summary' with '<caption>' in JavaDocs (#2895)
1 parent 35b0c10 commit 7554f5f

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

vavr/src/main/java/io/vavr/collection/CharSeq.java

+10-5
Original file line numberDiff line numberDiff line change
@@ -2347,7 +2347,8 @@ public CharSeq replace(CharSequence target, CharSequence replacement) {
23472347
* <p>
23482348
* The string {@code "boo:and:foo"}, for example, yields the following results with these expressions:
23492349
* <blockquote>
2350-
* <table cellpadding=1 cellspacing=0 summary="Split examples showing regex and result">
2350+
* <table cellpadding=1 cellspacing=0>
2351+
* <caption>Split examples showing regex and result</caption>
23512352
* <tr>
23522353
* <th>Regex</th>
23532354
* <th>Result</th>
@@ -2401,7 +2402,8 @@ public Seq<CharSeq> split(String regex) {
24012402
* <p>
24022403
* The string {@code "boo:and:foo"}, for example, yields the
24032404
* following results with these parameters:
2404-
* <blockquote><table cellpadding=1 cellspacing=0 summary="Split example showing regex, limit, and result">
2405+
* <blockquote><table cellpadding=1 cellspacing=0>
2406+
* <caption>Split example showing regex, limit, and result</caption>
24052407
* <tr>
24062408
* <th>Regex</th>
24072409
* <th>Limit</th>
@@ -2456,7 +2458,8 @@ public Seq<CharSeq> split(String regex, int limit) {
24562458
* {@code CharSeq} may be a different length than the original {@code CharSeq}.
24572459
* <p>
24582460
* Examples of lowercase mappings are in the following table:
2459-
* <table border="1" summary="Lowercase mapping examples showing language code of locale, upper case, lower case, and description">
2461+
* <table border="1">
2462+
* <caption>Lowercase mapping examples showing language code of locale, upper case, lower case, and description</caption>
24602463
* <tr>
24612464
* <th>Language Code of Locale</th>
24622465
* <th>Upper Case</th>
@@ -2536,7 +2539,8 @@ public CharSeq toLowerCase() {
25362539
* <p>
25372540
* Examples of locale-sensitive and 1:M case mappings are in the following table.
25382541
*
2539-
* <table border="1" summary="Examples of locale-sensitive and 1:M case mappings. Shows Language code of locale, lower case, upper case, and description.">
2542+
* <table border="1">
2543+
* <caption>Examples of locale-sensitive and 1:M case mappings. Shows Language code of locale, lower case, upper case, and description.</caption>
25402544
* <tr>
25412545
* <th>Language Code of Locale</th>
25422546
* <th>Lower Case</th>
@@ -2613,7 +2617,8 @@ public CharSeq toUpperCase() {
26132617
* <p>
26142618
* Examples of locale-sensitive and 1:M case mappings are in the following table.
26152619
*
2616-
* <table border="1" summary="Examples of locale-sensitive and 1:M case mappings. Shows Language code of locale, lower case, upper case, and description.">
2620+
* <table border="1">
2621+
* <caption>Examples of locale-sensitive and 1:M case mappings. Shows Language code of locale, lower case, upper case, and description.</caption>
26172622
* <tr>
26182623
* <th>Language Code of Locale</th>
26192624
* <th>Lower Case</th>

0 commit comments

Comments
 (0)