Skip to content

Commit

Permalink
chore: fix typo in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
lkb85 committed Feb 5, 2025
1 parent 406365e commit b4c3ddc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,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

0 comments on commit b4c3ddc

Please sign in to comment.