Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 0042cdb

Browse files
committedJul 13, 2024
remove "summary" attribute from javadoc comment
otherwise javadoc complains: ``` [ERROR] /tmp/tmp3xdp27n9/4c8eec7e8183f75869e1154d4ed490149e848e80/core/src/main/java/com/datastax/oss/driver/api/core/CqlIdentifier.java:44: error: attribute not supported in HTML5: summary [ERROR] * <table summary="examples"> [ERROR] ^ ``` Signed-off-by: Kefu Chai <[email protected]>
1 parent 3311fc8 commit 0042cdb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎core/src/main/java/com/datastax/oss/driver/api/core/CqlIdentifier.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
*
4444
* Examples:
4545
*
46-
* <table summary="examples">
46+
* <table>
4747
* <tr><th>Create statement</th><th>Case-sensitive?</th><th>CQL id</th><th>Internal id</th></tr>
4848
* <tr><td>CREATE TABLE t(foo int PRIMARY KEY)</td><td>No</td><td>foo</td><td>foo</td></tr>
4949
* <tr><td>CREATE TABLE t(Foo int PRIMARY KEY)</td><td>No</td><td>foo</td><td>foo</td></tr>

0 commit comments

Comments
 (0)
Please sign in to comment.