Index: pkg/analyzer/tool/summary/idl.dart |
diff --git a/pkg/analyzer/tool/summary/idl.dart b/pkg/analyzer/tool/summary/idl.dart |
index 65b319c3f359f8909c362336fa2dd032939f95ee..b19de7c9646453fe9cd1dab8f44a53e4b68ae5e7 100644 |
--- a/pkg/analyzer/tool/summary/idl.dart |
+++ b/pkg/analyzer/tool/summary/idl.dart |
@@ -123,20 +123,20 @@ class PrelinkedLibrary { |
*/ |
class PrelinkedReference { |
/** |
- * Index into [UnlinkedLibrary.dependencies] indicating which imported library |
+ * Index into [PrelinkedLibrary.dependencies] indicating which imported library |
* declares the entity being referred to. |
*/ |
int dependency; |
/** |
* The kind of the entity being referred to. For the pseudo-type `dynamic`, |
- * the kind if [PrelinkedReferenceKind.classOrEnum]. |
+ * the kind is [PrelinkedReferenceKind.classOrEnum]. |
*/ |
PrelinkedReferenceKind kind; |
/** |
* Integer index indicating which unit in the imported library contains the |
- * definition of the entity. As with indices into [UnlinkedLibrary.units], |
+ * definition of the entity. As with indices into [PrelinkedLibrary.units], |
* zero represents the defining compilation unit, and nonzero values |
* represent parts in the order of the corresponding `part` declarations. |
*/ |
@@ -201,7 +201,7 @@ class UnlinkedClass { |
UnlinkedTypeRef supertype; |
/** |
- * Mixins appering in a `with` clause, if any. |
+ * Mixins appearing in a `with` clause, if any. |
*/ |
List<UnlinkedTypeRef> mixins; |