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

Unified Diff: lib/src/functions.dart

Issue 2015623003: Fix incorrect identifiers. (Closed) Base URL: git@github.com:dart-lang/collection@master
Patch Set: Created 4 years, 7 months 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: lib/src/functions.dart
diff --git a/lib/src/functions.dart b/lib/src/functions.dart
index 7f3ff9981b19d63af3e121af6fe6344cf9249956..9c973b8aede3a69286ff6ea9ef68f7bc9d360867 100644
--- a/lib/src/functions.dart
+++ b/lib/src/functions.dart
@@ -75,7 +75,7 @@ Map<dynamic/*=T*/, List/*<S>*/> groupBy/*<S, T>*/(Iterable/*<S>*/ values,
minOrderBy = elementOrderBy;
}
}
- return min;
+ return minValue;
}
/// Returns the element of [values] for which [orderBy] returns the maximum
@@ -97,7 +97,7 @@ Map<dynamic/*=T*/, List/*<S>*/> groupBy/*<S, T>*/(Iterable/*<S>*/ values,
maxOrderBy = elementOrderBy;
}
}
- return max;
+ return maxValue;
}
/// Returns the [transitive closure][] of [graph].
« 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