Skip to content

Commit

Permalink
use h2 for top-level header
Browse files Browse the repository at this point in the history
otherwise javadoc complains:

```
[ERROR] /tmp/tmp3xdp27n9/4c8eec7e8183f75869e1154d4ed490149e848e80/core/src/main/java/com/datastax/oss/driver/api/core/paging/OffsetPager.java:47: error: headi
ng used out of sequence: <H3>, compared to implicit preceding heading: <H1>
[ERROR]  * <h3>Performance considerations</h3>
[ERROR]    ^
```

Signed-off-by: Kefu Chai <kefu.chai@scylladb.com>
  • Loading branch information
tchaikov committed Jul 13, 2024
1 parent 0042cdb commit a250fee
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
* a reasonable trade-off if the cardinality stays low. This class provides a way to emulate this
* behavior on the client side.
*
* <h3>Performance considerations</h3>
* <h2>Performance considerations</h2>
*
* For each page that you want to retrieve:
*
Expand All @@ -71,7 +71,7 @@
* OffsetPager.Page&lt;Row&gt; page5 = pager.getPage(rs, 5);
* </pre>
*
* <h3>Establishing application-level guardrails</h3>
* <h2>Establishing application-level guardrails</h2>
*
* Linear performance should be fine for the values typically encountered in real-world
* applications: for example, if the page size is 25 and users never go past page 10, the worst case
Expand Down

0 comments on commit a250fee

Please sign in to comment.