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

Unified Diff: packages/collection/lib/priority_queue.dart

Issue 1521693002: Roll Observatory deps (charted -> ^0.3.0) (Closed) Base URL: https://chromium.googlesource.com/external/github.com/dart-lang/observatory_pub_packages.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 | « packages/collection/lib/equality.dart ('k') | packages/collection/lib/src/comparators.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/collection/lib/priority_queue.dart
diff --git a/packages/collection/lib/priority_queue.dart b/packages/collection/lib/priority_queue.dart
index efb3239027b38ff953a0b6356d9c5da806902fcf..e1a01777119884731eb24b2dc0aa9cc161225490 100644
--- a/packages/collection/lib/priority_queue.dart
+++ b/packages/collection/lib/priority_queue.dart
@@ -275,7 +275,7 @@ class HeapPriorityQueue<E> implements PriorityQueue<E> {
*/
int _locate(E object) {
if (_length == 0) return -1;
- // Count positions from one instad of zero. This gives the numbers
+ // Count positions from one instead of zero. This gives the numbers
// some nice properties. For example, all right children are odd,
// their left sibling is even, and the parent is found by shifting
// right by one.
« no previous file with comments | « packages/collection/lib/equality.dart ('k') | packages/collection/lib/src/comparators.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698