| Index: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/type/InterfaceTypeImpl.java
|
| diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/type/InterfaceTypeImpl.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/type/InterfaceTypeImpl.java
|
| index 980f278a661690aa31712fb61ecedcae9be7ebd0..6528586d3fbb5f3be742b209e0375ef4f82d1933 100644
|
| --- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/type/InterfaceTypeImpl.java
|
| +++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/type/InterfaceTypeImpl.java
|
| @@ -29,14 +29,14 @@ public class InterfaceTypeImpl extends TypeImpl implements InterfaceType {
|
| private Type[] typeArguments;
|
|
|
| /**
|
| - * The instance representing the type "Dynamic".
|
| + * The instance representing the type "dynamic".
|
| */
|
| - private static final InterfaceTypeImpl DYNAMIC_TYPE = new InterfaceTypeImpl("Dynamic");
|
| + private static final InterfaceTypeImpl DYNAMIC_TYPE = new InterfaceTypeImpl("dynamic");
|
|
|
| /**
|
| - * Return a shared instance of this class representing the type {@code Dynamic}.
|
| + * Return a shared instance of this class representing the type {@code dynamic}.
|
| *
|
| - * @return an instance of this class representing the type {@code Dynamic}
|
| + * @return an instance of this class representing the type {@code dynamic}
|
| */
|
| public static InterfaceTypeImpl getDynamic() {
|
| return DYNAMIC_TYPE;
|
|
|