diff --git a/assets/text/Monerocom_Terms_of_Use.txt b/assets/text/Monerocom_Terms_of_Use.txt
index 862cd2d9b..7e4bf50e4 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 1ac0a2ed4..b4f5a453f 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 b495cdda0..ad8816ca3 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 ea51d40dd..31151a51d 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 f037ccd24..3c6117b05 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);