Skip to content

Commit

Permalink
fix(javadoc): Replace HTML with entities to please Java 11 javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
olivergondza committed Jun 2, 2024
1 parent 59e9c64 commit f46ca16
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/com/github/olivergondza/saxeed/TagName.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
* Example:
*
* <pre>
* `&lt;a>` := uri=""; prefix=""; local="a"
* `&lt;a xmlns="XXX">` := uri="XXX"; prefix=""; local="a" (`xmlns` can be declared on a parent tag)
* `&lt;x:a xmlns:x="XXX">` := uri="XXX"; prefix="x"; local="a" (`xmlns:x` can be declared on a parent tag)
* `&lt;a&gt;` := uri=""; prefix=""; local="a"
* `&lt;a xmlns="XXX"&gt;` := uri="XXX"; prefix=""; local="a" (`xmlns` can be declared on a parent tag)
* `&lt;x:a xmlns:x="XXX"&gt;` := uri="XXX"; prefix="x"; local="a" (`xmlns:x` can be declared on a parent tag)
* </pre>
*/
public class TagName {
Expand Down

0 comments on commit f46ca16

Please sign in to comment.