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

Unified Diff: samples-dev/swarm/Views.dart

Issue 2850783002: Dart SDK Spelling b, c, and d. (Closed)
Patch Set: Created 3 years, 8 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 | « samples-dev/swarm/SwarmApp.dart ('k') | samples-dev/swarm/swarm_ui_lib/layout/GridLayout.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples-dev/swarm/Views.dart
diff --git a/samples-dev/swarm/Views.dart b/samples-dev/swarm/Views.dart
index 20774daa0d218592f83619ed980a39572d5dfbb6..7bedbfafc4ab3cc1e22ec2af65e94bc02053baf8 100644
--- a/samples-dev/swarm/Views.dart
+++ b/samples-dev/swarm/Views.dart
@@ -47,7 +47,7 @@ class EventListeners {
}
/**
- * Private view class used to store placeholder views for detatched ListView
+ * Private view class used to store placeholder views for detached ListView
* elements.
*/
class _PlaceholderView extends View {
@@ -496,13 +496,13 @@ class GenericListView<D> extends View {
/**
* Detach a subview from the view replacing it with an empty placeholder view.
- * The detatched subview can be safely reparented.
+ * The detached subview can be safely reparented.
*/
View detachSubview(D itemData) {
int index = findIndex(itemData);
View view = _itemViews[index];
if (view == null) {
- // Edge case: add the view so we can detatch as the view is currently
+ // Edge case: add the view so we can detach as the view is currently
// outside but might soon be inside the visible area.
assert(!_activeInterval.contains(index));
_addView(index);
« no previous file with comments | « samples-dev/swarm/SwarmApp.dart ('k') | samples-dev/swarm/swarm_ui_lib/layout/GridLayout.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698