Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public boolean canConvert(Class<?> fromClass, String syntax, Class<?> toClass) {
public <T> T convert(Object source, String syntax, Class<T> toClass) {
Object result = null;

// What are we converting form
// What are we converting from
Class<?> fromClass = source.getClass();

// Deal with primitives
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public ArrayMarshaller(Comparator<E> comparator, Marshaller<E> keyMarshaller) {
/**
* Creates a new instance of AvlTreeMarshaller with the default key Marshaller which
* uses Java Serialization.
* @param comparator Comparator to be used for key comparision
* @param comparator Comparator to be used for key comparison
*/
public ArrayMarshaller(Comparator<E> comparator) {
this.comparator = comparator;
Expand Down