From 72583479d6c982e24ff6717acab8ad335a61cac0 Mon Sep 17 00:00:00 2001 From: str4d Date: Thu, 28 Aug 2014 03:03:15 +0000 Subject: [PATCH] Comment fixes --- app/src/main/java/i2p/bote/android/EmailListFragment.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/src/main/java/i2p/bote/android/EmailListFragment.java b/app/src/main/java/i2p/bote/android/EmailListFragment.java index 69beb22..35e3911 100644 --- a/app/src/main/java/i2p/bote/android/EmailListFragment.java +++ b/app/src/main/java/i2p/bote/android/EmailListFragment.java @@ -117,11 +117,11 @@ public class EmailListFragment extends ListFragment implements // We need to insert the PullToRefreshLayout into the Fragment's ViewGroup .insertLayoutInto(viewGroup) - // We need to mark the ListView and it's Empty View as pullable - // This is because they are not dirent children of the ViewGroup + // We need to mark the ListView and its Empty View as pullable + // This is because they are not direct children of the ViewGroup .theseChildrenArePullable(getListView(), getListView().getEmptyView()) - // We can now complete the setup as desired + // We can now complete the setup as desired .listener(this) .options(Options.create() .refreshOnUp(true)