Merge pull request #339 from oldergod/patch-1
Fix builder calls to new API
This commit is contained in:
commit
da1ed8f5c3
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ To use, supply an instance of your desired converter when building your `Moshi`
|
||||||
|
|
||||||
```java
|
```java
|
||||||
Moshi moshi = new Moshi.Builder()
|
Moshi moshi = new Moshi.Builder()
|
||||||
.addConverterFactory(Date.class, new Rfc3339DateJsonAdapter())
|
.add(Date.class, new Rfc3339DateJsonAdapter())
|
||||||
//etc
|
//etc
|
||||||
.build();
|
.build();
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue