Skip to content

Commit

Permalink
Fix remaining JavaDoc style issues (#2898)
Browse files Browse the repository at this point in the history
  • Loading branch information
pivovarit authored Oct 10, 2024
1 parent 5c05f5b commit 2293e5d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 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,7 @@ 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>
* <table style="border-spacing: 0; padding: 1px;">
* <caption>Split examples showing regex and result</caption>
* <tr>
* <th>Regex</th>
Expand Down Expand Up @@ -2402,7 +2402,7 @@ 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>
* <blockquote><table style="border-spacing: 0; padding: 1px;">
* <caption>Split example showing regex, limit, and result</caption>
* <tr>
* <th>Regex</th>
Expand Down
4 changes: 2 additions & 2 deletions vavr/src/main/java/io/vavr/collection/package-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Purely functional collections based on {@linkplain io.vavr.collection.Traversable}.
*
* <h2>Performance Characteristics of Vavr Collections</h2>
* <table cellpadding="5" cellspacing="0" border="1" style="border-collapse: collapse">
* <table style="border-collapse: collapse; border: 1px solid; padding: 5px;">
* <caption>Time Complexity of Sequential Operations</caption>
* <thead>
* <tr>
Expand All @@ -27,7 +27,7 @@
* </tbody>
* </table>
* <br>
* <table cellpadding="5" cellspacing="0" border="1" style="border-collapse: collapse">
* <table style="border-collapse: collapse; border: 1px solid; padding: 5px;">
* <caption>Time Complexity of Map/Set Operations</caption>
* <thead>
* <tr>
Expand Down

0 comments on commit 2293e5d

Please sign in to comment.