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)