Skip to content

Commit

Permalink
Fixed typo in README.md
Browse files Browse the repository at this point in the history
Fixed class type in an example of ReflectionUtils section.
  • Loading branch information
robertotru authored Aug 21, 2017
1 parent 10c9de3 commit 9fafbb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ Set<Method> listMethodsFromCollectionToBoolean =
getAllMethods(List.class,
withParametersAssignableTo(Collection.class), withReturnType(boolean.class));

Set<Fields> fields = getAllFields(SomeClass.class, withAnnotation(annotation), withTypeAssignableTo(type));
Set<Field> fields = getAllFields(SomeClass.class, withAnnotation(annotation), withTypeAssignableTo(type));
```

*See more in the [ReflectionUtils javadoc](http://ronmamo.github.io/reflections/index.html?org/reflections/ReflectionUtils.html)*
Expand Down

0 comments on commit 9fafbb1

Please sign in to comment.