Fix Typos

This commit is contained in:
Yoginth
2019-06-05 03:52:40 +00:00
parent 3ea365a1f5
commit 0851fea8eb
15 changed files with 20 additions and 20 deletions

View File

@@ -72,7 +72,7 @@ public class RepoPersister {
private void flushBufferToDb() throws IndexUpdater.UpdateException {
if (!hasBeenInitialized) {
// This is where we will store all of the metadata before commiting at the
// This is where we will store all of the metadata before committing at the
// end of the process. This is due to the fact that we can't verify the cert
// the index was signed with until we've finished reading it - and we don't
// want to put stuff in the real database until we are sure it is from a

View File

@@ -140,7 +140,7 @@ public abstract class Downloader {
/**
* After every network operation that could take a while, we will check if an
* interrupt occured during that blocking operation. The goal is to ensure we
* interrupt occurred during that blocking operation. The goal is to ensure we
* don't move onto another slow, network operation if we have cancelled the
* download.
*

View File

@@ -517,7 +517,7 @@ public class AppDetailsActivity extends AppCompatActivity
// wait for that service to notify us, and then we will respond in appObserver.
// Having said that, there are some cases where the PackageManager doesn't
// return control back to us until after it has already braodcast to the
// return control back to us until after it has already broadcast to the
// InstalledAppProviderService. This means that we are not listening for any
// feedback from InstalledAppProviderService (we intentionally stop listening in
// onPause). Empirically, this happens when upgrading an app rather than a clean

View File

@@ -13,7 +13,7 @@ import android.util.AttributeSet;
public class OverscrollLinearLayoutManager extends LinearLayoutManager {
/**
* A listener interface to get overscroll infromation.
* A listener interface to get overscroll information.
*/
public interface OnOverscrollListener {
/**

View File

@@ -421,7 +421,7 @@ public class PreferencesFragment extends PreferenceFragment
/**
* If a user specifies they want to fetch updates automatically, then start the download of relevant
* updates as soon as they enable the feature.
* Also, if the user has the priv extention installed then change the label to indicate that it
* Also, if the user has the priv extension installed then change the label to indicate that it
* will actually _install_ apps, not just fetch their .apk file automatically.
*/
private void initAutoFetchUpdatesPreference() {

View File

@@ -223,7 +223,7 @@ public abstract class AppListItemController extends RecyclerView.ViewHolder {
* @param app The app that was swiped away
* @param updatesAdapter The adapter. Can be used for refreshing the adapter with adapter.refreshStatuses().
*
* @see #canDismiss() This must also be overriden and should return true.
* @see #canDismiss() This must also be overridden and should return true.
*/
protected void onDismissApp(@NonNull App app, UpdatesAdapter updatesAdapter) {
}

View File

@@ -55,7 +55,7 @@ public class CategoryTextWatcher implements TextWatcher {
// right to the start. This could be if we are removing everything (in which case
// there is no text to span), or we are removing somewhere from after the category
// back to the start (in which case we've removed the category anyway and don't need
// to explicilty request it to be removed.
// to explicitly request it to be removed.
if (start == 0 && removingOrReplacing) {
return;
}
@@ -119,7 +119,7 @@ public class CategoryTextWatcher implements TextWatcher {
/**
* Ensures that a {@link CategorySpan} is in {@param textToSpannify} if required.
* Will firstly remove all existing category spans, and then add back one if neccesary.
* Will firstly remove all existing category spans, and then add back one if necessary.
* In addition, also adds a {@link TtsSpan} to indicate to screen readers that the category
* span has semantic meaning representing a category.
*/

View File

@@ -95,7 +95,7 @@ public class UpdatesAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder
/**
* There are some statuses managed by {@link AppUpdateStatusManager} which we don't care about
* for the "Updates" view. For example Also, although this
* adapter does know about apps with updates availble, it does so by querying the database not
* adapter does know about apps with updates available, it does so by querying the database not
* by querying the app update status manager. As such, apps with the status
* {@link org.fdroid.fdroid.AppUpdateStatusManager.Status#UpdateAvailable} are not interesting here.
*/