Skip to content

Fix broken Javadoc {@code} tags in JsonType#842

Open
jongheon1 wants to merge 1 commit intovladmihalcea:masterfrom
jongheon1:fix-javadoc-code-tags-in-json-type
Open

Fix broken Javadoc {@code} tags in JsonType#842
jongheon1 wants to merge 1 commit intovladmihalcea:masterfrom
jongheon1:fix-javadoc-code-tags-in-json-type

Conversation

@jongheon1
Copy link
Copy Markdown

Summary

  • Fix broken {@code} tags in JsonType Javadoc across all four Hibernate modules (63, 70, 71, 73)
  • The {@code} tags in annotation code examples were prematurely closed (e.g., {@code @Type(}JsonType.class) instead of {@code @Type(JsonType.class)}), causing incorrect rendering in the generated Javadoc documentation

Changes

Before (broken rendering):

 * {@code @Type(}JsonType.class)
 * {@code @Column(}columnDefinition = "VARCHAR2")

After (correct rendering):

 * {@code @Type(JsonType.class)}
 * {@code @Column(columnDefinition = "VARCHAR2")}

Files changed

  • hypersistence-utils-hibernate-63/.../JsonType.java
  • hypersistence-utils-hibernate-70/.../JsonType.java
  • hypersistence-utils-hibernate-71/.../JsonType.java
  • hypersistence-utils-hibernate-73/.../JsonType.java

The {@code} tags in the Javadoc code examples were prematurely closed,
causing the annotation examples to render incorrectly in the generated
documentation.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant