Fix typo: Paramterized was spelled wong.

This commit is contained in:
Jesse Wilson 2011-11-20 20:31:10 +00:00
parent a00c5ff9f1
commit e9521471aa
2 changed files with 4 additions and 4 deletions

View File

@ -33,7 +33,7 @@ import java.lang.reflect.Type;
* @author Inderjeet Singh
* @author Joel Leitch
*/
public class ParamterizedTypeFixtures {
public class ParameterizedTypeFixtures {
public static class MyParameterizedType<T> {
public final T value;

View File

@ -18,9 +18,9 @@ package com.google.gson.functional;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.ParamterizedTypeFixtures.MyParameterizedType;
import com.google.gson.ParamterizedTypeFixtures.MyParameterizedTypeAdapter;
import com.google.gson.ParamterizedTypeFixtures.MyParameterizedTypeInstanceCreator;
import com.google.gson.ParameterizedTypeFixtures.MyParameterizedType;
import com.google.gson.ParameterizedTypeFixtures.MyParameterizedTypeAdapter;
import com.google.gson.ParameterizedTypeFixtures.MyParameterizedTypeInstanceCreator;
import com.google.gson.common.TestTypes.BagOfPrimitives;
import com.google.gson.reflect.TypeToken;