From 76df51bfde1b06e0ee49be66bf6d48ce86f20461 Mon Sep 17 00:00:00 2001 From: John Carlson Date: Wed, 26 Jul 2017 14:49:46 -0500 Subject: [PATCH] Correction to docs of Rfc3339DateJsonAdapter --- adapters/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adapters/README.md b/adapters/README.md index 9c89e13..38504bf 100644 --- a/adapters/README.md +++ b/adapters/README.md @@ -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(); ```