Skip to content

Commit de48776

Browse files
committed
Javadoc
Use emphasis instead of italics
1 parent 8023e51 commit de48776

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/org/apache/commons/beanutils2/converters/InstantConverter.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
/**
2222
* {@link org.apache.commons.beanutils2.Converter} implementation that handles conversion to and from {@link Instant} objects.
2323
* <p>
24-
* Can be configured to either return a <i>default value</i> or throw a {@code ConversionException} if a conversion error occurs.
24+
* Can be configured to either return a <em>default value</em> or throw a {@code ConversionException} if a conversion error occurs.
2525
* </p>
2626
*
2727
* @since 2.0
@@ -30,14 +30,14 @@
3030
public final class InstantConverter extends DateTimeConverter<Instant> {
3131

3232
/**
33-
* Constructs a {@link Instant} <i>Converter</i> that throws a {@code ConversionException} if an error occurs.
33+
* Constructs a {@link Instant} <em>Converter</em> that throws a {@code ConversionException} if an error occurs.
3434
*/
3535
public InstantConverter() {
3636
super();
3737
}
3838

3939
/**
40-
* Constructs a {@link Instant} <i>Converter</i> that returns a default value if an error occurs.
40+
* Constructs a {@link Instant} <em>Converter</em> that returns a default value if an error occurs.
4141
*
4242
* @param defaultValue The default value to be returned if the value to be converted is missing or an error occurs converting the value.
4343
*/

0 commit comments

Comments
 (0)