fixed javadoc typo.

This commit is contained in:
Adrian Cole 2014-11-02 08:08:28 -08:00
parent 8245f6fd3a
commit ad36e05aa3
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ import com.google.common.annotations.Beta;
* abstract String id();
* @Nullable abstract Map<String, String> metadata();
*
* @AutoValueSerializedNames({ "Id", "Metadata" }) // Note case format is controlled here!
* @SerializedNames({ "Id", "Metadata" }) // Note case format is controlled here!
* static Resource create(String id, Map<String, String> metadata) {
* return new AutoValue_Resource(id, metadata);
* }