diff --git a/src/main/java/com/fasterxml/jackson/annotation/PropertyAccessor.java b/src/main/java/com/fasterxml/jackson/annotation/PropertyAccessor.java index 504d8283..7db6650e 100644 --- a/src/main/java/com/fasterxml/jackson/annotation/PropertyAccessor.java +++ b/src/main/java/com/fasterxml/jackson/annotation/PropertyAccessor.java @@ -16,12 +16,12 @@ public enum PropertyAccessor * Getters are methods used to get a POJO field value for serialization, * or, under certain conditions also for de-serialization. Latter * can be used for effectively setting Collection or Map values - * in absence of setters, iff returned value is not a copy but + * in absence of setters, if returned value is not a copy but * actual value of the logical property. *

* Since version 1.3, this does NOT include "is getters" (methods * that return boolean and named 'isXxx' for property 'xxx'); instead, - * {@link #IS_GETTER} is used}. + * {@link #IS_GETTER} is used. */ GETTER,