Fix typos (#276)

Dimitris Apostolou committed Mar 9, 2022 at 13:43 UTC 48653f53a4b82b3e6d40087ff3d212fc618657fc
5 files changed +6 -6
assets/text/Monerocom_Terms_of_Use.txt
+1 -1
@@ -104,7 +104,7 @@ Risks Related to the use of the App
104
105 - 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;
106
107 - - 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;
107 + - 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;
108
109 - 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;
110
howto-build-android.md
+1 -1
@@ -41,7 +41,7 @@ CakeWallet cannot be built without the following packages installed on your buil
41
42 - openjdk-8-jre-headless
43
44 -You may easily install them on your build sytem with the following command:
44 +You may easily install them on your build system with the following command:
45
46 `$ sudo apt-get install -y unzip automake build-essential file pkg-config git python libtool libtinfo5 cmake openjdk-8-jre-headless`
47
ios/Runner/InfoBase.plist
+2 -2
@@ -45,11 +45,11 @@
45 <key>NSCameraUsageDescription</key>
46 <string>Used for scan QR code</string>
47 <key>NSDocumentsFolderUsageDescription</key>
48 - <string>We need access to documents folder for get acces to open/save backup file</string>
48 + <string>We need access to documents folder for getting access to open/save backup file</string>
49 <key>NSFaceIDUsageDescription</key>
50 <string>Enable Face ID for fast and secure access to wallets and private keys</string>
51 <key>NSPhotoLibraryUsageDescription</key>
52 - <string>We need access to documents folder for get acces to open/save backup file</string>
52 + <string>We need access to documents folder for getting access to open/save backup file</string>
53 <key>UIBackgroundModes</key>
54 <array>
55 <string>fetch</string>
lib/core/mnemonic_length.dart
+1 -1
@@ -4,7 +4,7 @@ const bitcoinMnemonicLength = 12;
4 const moneroMnemonicLength = 25;
5
6 int mnemonicLength(WalletType type) {
7 - // TODO: need to have only one place for get(set) mnemonic string lenth;
7 + // TODO: need to have only one place for get(set) mnemonic string length;
8
9 switch (type) {
10 case WalletType.monero:
lib/entities/fs_migration.dart
+1 -1
@@ -95,7 +95,7 @@ Future<void> ios_migrate_user_defaults() async {
95 }
96 await prefs.setBool('dark_theme', isDark);
97
98 - //assign the pin lenght
98 + //assign the pin length
99 final pinLength = await ios_legacy_helper.getInt('pin-length');
100 await prefs.setInt(PreferencesKey.currentPinLength, pinLength);
101