Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Replace 'summary' with '<caption>' in JavaDocs #2895

Merged
merged 1 commit into from
Oct 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading