Skip to content

Commit

Permalink
Merge pull request javaparser#124 from pevers/patch-2
Browse files Browse the repository at this point in the history
TypeUsage is now Type
  • Loading branch information
ftomassetti committed Dec 30, 2016
2 parents ba12849 + d2b9da7 commit 83cbe21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -37,7 +37,7 @@ Take a look at `JavaParserFacade`. For example you can use it to find the type o

```java
Node node = <get this node by parsing source code with JavaParser>
TypeUsage typeOfTheNode = JavaParserFacade.get(typeSolver).getType(node);
Type typeOfTheNode = JavaParserFacade.get(typeSolver).getType(node);
```

Easy, right?
Expand Down

0 comments on commit 83cbe21

Please sign in to comment.