Skip to content

Commit

Permalink
Fix some typos (sockeqwe#280)
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas-Vos authored and sockeqwe committed Oct 30, 2017
1 parent 194d504 commit de11781
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
*
* <p>
* Mosby assumes that all interaction (i.e. updating the View) between Presenter and View is
* executed on android's main UI thread.
* executed on Android's main UI thread.
* </p>
*
* @author Hannes Dorfmann
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class MvpQueuingBasePresenter<V extends MvpView> implements MvpPresenter<
* // do something
* ...
*
* ifViewAtached( view -> view.showSuccessful())
* ifViewAttached( view -> view.showSuccessful())
* }
*
* @param <V> The Type of the View
Expand Down Expand Up @@ -97,4 +97,4 @@ private void runQueuedActions() {
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* // do something
* ...
*
* ifViewAtached( view -> view.showSuccessful())
* ifViewAttached( view -> view.showSuccessful())
* }
*
* }
Expand All @@ -54,7 +54,7 @@ public class MvpBasePresenter<V extends MvpView> implements MvpPresenter<V> {
* // do something
* ...
*
* ifViewAtached( view -> view.showSuccessful())
* ifViewAttached( view -> view.showSuccessful())
* }
* @param <V> The Type of the View
*/
Expand Down Expand Up @@ -114,7 +114,7 @@ public interface ViewAction<V> {
* attached
* while trying to execute the action. false, if no exception should be thrown (but action will
* not executed either since no view attached)
* @param action The {@link ViewAction} that will be exceuted if a view is attached. Here is
* @param action The {@link ViewAction} that will be executed if a view is attached. Here is
* where
* you call view.isLoading etc. Use the view reference passed as parameter to {@link
* ViewAction#run(Object)} and not deprecated method {@link #getView()}
Expand Down

0 comments on commit de11781

Please sign in to comment.