Skip to content

Commit

Permalink
Fix javadoc typos in DynamoDBTypeConverter
Browse files Browse the repository at this point in the history
  • Loading branch information
blx committed Oct 19, 2016
1 parent e466433 commit 7f91ea0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public interface DynamoDBTypeConverter<S extends Object, T extends Object> {
S convert(T object);

/**
* Turns an object of type S into an objext of type T.
* Turns an object of type S into an object of type T.
*/
T unconvert(S object);

Expand Down Expand Up @@ -111,7 +111,7 @@ public T unconvert(final S object) {
}

/**
* A converter which evaluates nullabiltiy before convert/unconvert.
* A converter which evaluates nullability before convert/unconvert.
*/
public static class NullSafeConverter<S,T> extends DelegateConverter<S,T> {
public NullSafeConverter(DynamoDBTypeConverter<S,T> delegate) {
Expand Down

0 comments on commit 7f91ea0

Please sign in to comment.