Skip to content

Commit 7897261

Browse files
authored
Fix broken link in Javadoc of JsonInclude (#241)
1 parent 41e895f commit 7897261

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/fasterxml/jackson/annotation/JsonInclude.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
*<p>
2424
* To base inclusion on value of contained value(s), you will typically also need
2525
* to specify {@link #content()} annotation; for example, specifying only
26-
* {@link #value} as {@link Include#NON_EMPTY} for a {link java.util.Map} would
26+
* {@link #value} as {@link Include#NON_EMPTY} for a {@link java.util.Map} would
2727
* exclude <code>Map</code>s with no values, but would include <code>Map</code>s
2828
* with `null` values. To exclude Map with only `null` value, you would use both
2929
* annotations like so:
@@ -130,7 +130,7 @@ public enum Include
130130
*<ul>
131131
* <li>null</li>
132132
* <li>"absent" value of a referential type (like Java 8 `Optional`, or
133-
* {link java.util.concurrent.atomic.AtomicReference}); that is, something
133+
* {@link java.util.concurrent.atomic.AtomicReference}); that is, something
134134
* that would not deference to a non-null value.
135135
* </ul>
136136
* This option is mostly used to work with "Optional"s (Java 8, Guava).

0 commit comments

Comments
 (0)