Skip to content

Commit

Permalink
fix broken asciidoc footnote
Browse files Browse the repository at this point in the history
  • Loading branch information
gavinking committed Dec 16, 2023
1 parent ca9e143 commit 216b364
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spec/src/main/asciidoc/ch02-entities.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -1270,9 +1270,9 @@ The following Java types are considered _basic types_:
- `Date`, `Time`, or `Timestamp` from `java.sql` footnote:[The use of date/time
types defined in the package `java.sql` is strongly discouraged. Newly-written
programs should use the date/time types defined in `java.time`.],
- `byte[]` or `Byte[]`, `char[]` or `Character[]`,footnote:[The use of `Byte[]`
or of `Character[]` is discouraged. Newly-written programs should use
`byte[]` or `char[]` instead.]
- `byte[]` or `Byte[]`, `char[]` or `Character[]` footnote:[The use of `Byte`
arrays or of `Character` arrays is discouraged. Newly-written programs should
use `byte` or `char` arrays instead.],
- any Java `enum` type,
- any other type which implements `java.io.Serializable`.

Expand Down

0 comments on commit 216b364

Please sign in to comment.