Skip to content

Commit

Permalink
Add missing >s to README.md (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasDahl authored and rharter committed Oct 20, 2016
1 parent cc1297b commit 9d6e6d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ and pass it to the generated `GsonTypeAdapter` class.
@AutoValue public abstract class Foo<A, B, C> {
// properties...

public static <A, B, C> TypeAdapter<Foo<A, B, C> typeAdapter(Gson gson,
TypeToken<? extends Foo<A, B, C> typeToken) {
public static <A, B, C> TypeAdapter<Foo<A, B, C>> typeAdapter(Gson gson,
TypeToken<? extends Foo<A, B, C>> typeToken) {
return new AutoValue_Foo.GsonTypeAdapter(gson, typeToken);
}
}
Expand Down

0 comments on commit 9d6e6d2

Please sign in to comment.