Fix typos (#1266)
Dimitris Apostolou committed
Jan 18, 2024 at 01:38 UTC
1b65adce53f93221f8117364e0f0a88875523d10
3 files changed
+4
-4
lib/core/wallet_connect/evm_chain_service.dart
+1
-1
@@ -253,7 +253,7 @@ class EvmChainServiceImpl implements ChainService {
253
254
return result;
255
} catch (e) {
256
- log('An error has occured while signing transaction: ${e.toString()}');
256
+ log('An error has occurred while signing transaction: ${e.toString()}');
257
bottomSheetService.queueBottomSheet(
258
isModalDismissible: true,
259
widget: BottomSheetMessageDisplayWidget(
scripts/macos/build_openssl_common.sh
+1
-1
@@ -10,7 +10,7 @@ OPEN_SSL_ARM_DIR_PATH="${EXTERNAL_MACOS_SOURCE_DIR}/${OPEN_SSL_ARM_DIR_NAME}"
10
11
build_openssl_init_common() {
12
DIR=$1
13
- # Use 1.1.1s becasue of https://github.com/openssl/openssl/issues/18720
13
+ # Use 1.1.1s because of https://github.com/openssl/openssl/issues/18720
14
OPENSSL_VERSION="1.1.1s"
15
16
echo "============================ OpenSSL ============================"
tool/configure.dart
+2
-2
@@ -403,10 +403,10 @@ class AssetRate {
403
}
404
405
abstract class HavenWalletDetails {
406
- // FIX-ME: it's abstruct class
406
+ // FIX-ME: it's abstract class
407
@observable
408
late Account account;
409
- // FIX-ME: it's abstruct class
409
+ // FIX-ME: it's abstract class
410
@observable
411
late HavenBalance balance;
412
}