Correction to docs of Rfc3339DateJsonAdapter

This commit is contained in:
John Carlson
2017-07-26 14:49:46 -05:00
parent 54c026f5db
commit 76df51bfde

View File

@@ -7,7 +7,7 @@ To use, supply an instance of your desired converter when building your `Moshi`
```java
Moshi moshi = new Moshi.Builder()
.addConverterFactory(new Rfc3339DateJsonAdapter())
.addConverterFactory(Date.class, new Rfc3339DateJsonAdapter())
//etc
.build();
```