Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(36)

Unified Diff: pkg/analyzer/tool/summary/idl.dart

Issue 1521963003: Couple comment tweaks for summaries IDL. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698