From 48653f53a4b82b3e6d40087ff3d212fc618657fc Mon Sep 17 00:00:00 2001 From: Dimitris Apostolou Date: Wed, 9 Mar 2022 13:43:18 +0200 Subject: [PATCH] Fix typos (#276) --- assets/text/Monerocom_Terms_of_Use.txt | 2 +- howto-build-android.md | 2 +- ios/Runner/InfoBase.plist | 4 ++-- lib/core/mnemonic_length.dart | 2 +- lib/entities/fs_migration.dart | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/assets/text/Monerocom_Terms_of_Use.txt b/assets/text/Monerocom_Terms_of_Use.txt index 862cd2d9..7e4bf50e 100644 --- a/assets/text/Monerocom_Terms_of_Use.txt +++ b/assets/text/Monerocom_Terms_of_Use.txt @@ -104,7 +104,7 @@ Risks Related to the use of the App - Mistakes made by the user of any Monero-related and/or Bitcoin-related and/or Litecoin-related software or service, e.g., forgotten passwords, payments sent to wrong Monero and/or Bitcoin and/or Litecoin addresses, or accidental deletion of wallets; - - Software problems of the App and/or any Monero-related or Bitcoin-related or Litecoin-related oftware or service, e.g., corrupted wallet file, incorrectly constructed transactions, unsafe cryptographic libraries, malware affecting the App and/or any Monero-related or Bitcoin-related or Litecoin-related software or service; + - Software problems of the App and/or any Monero-related or Bitcoin-related or Litecoin-related software or service, e.g., corrupted wallet file, incorrectly constructed transactions, unsafe cryptographic libraries, malware affecting the App and/or any Monero-related or Bitcoin-related or Litecoin-related software or service; - Technical failures in the hardware of the user of any Monero-related and/or Bitcoin-related and/or Litecoin-related software or service, e.g., data loss due to a faulty or damaged storage device; diff --git a/howto-build-android.md b/howto-build-android.md index 1ac0a2ed..b4f5a453 100644 --- a/howto-build-android.md +++ b/howto-build-android.md @@ -41,7 +41,7 @@ CakeWallet cannot be built without the following packages installed on your buil - openjdk-8-jre-headless -You may easily install them on your build sytem with the following command: +You may easily install them on your build system with the following command: `$ sudo apt-get install -y unzip automake build-essential file pkg-config git python libtool libtinfo5 cmake openjdk-8-jre-headless` diff --git a/ios/Runner/InfoBase.plist b/ios/Runner/InfoBase.plist index b495cdda..ad8816ca 100644 --- a/ios/Runner/InfoBase.plist +++ b/ios/Runner/InfoBase.plist @@ -45,11 +45,11 @@ NSCameraUsageDescription Used for scan QR code NSDocumentsFolderUsageDescription - We need access to documents folder for get acces to open/save backup file + We need access to documents folder for getting access to open/save backup file NSFaceIDUsageDescription Enable Face ID for fast and secure access to wallets and private keys NSPhotoLibraryUsageDescription - We need access to documents folder for get acces to open/save backup file + We need access to documents folder for getting access to open/save backup file UIBackgroundModes fetch diff --git a/lib/core/mnemonic_length.dart b/lib/core/mnemonic_length.dart index ea51d40d..31151a51 100644 --- a/lib/core/mnemonic_length.dart +++ b/lib/core/mnemonic_length.dart @@ -4,7 +4,7 @@ const bitcoinMnemonicLength = 12; const moneroMnemonicLength = 25; int mnemonicLength(WalletType type) { - // TODO: need to have only one place for get(set) mnemonic string lenth; + // TODO: need to have only one place for get(set) mnemonic string length; switch (type) { case WalletType.monero: diff --git a/lib/entities/fs_migration.dart b/lib/entities/fs_migration.dart index f037ccd2..3c6117b0 100644 --- a/lib/entities/fs_migration.dart +++ b/lib/entities/fs_migration.dart @@ -95,7 +95,7 @@ Future ios_migrate_user_defaults() async { } await prefs.setBool('dark_theme', isDark); - //assign the pin lenght + //assign the pin length final pinLength = await ios_legacy_helper.getInt('pin-length'); await prefs.setInt(PreferencesKey.currentPinLength, pinLength);