From 51d92ae6a8b1f14cecd4dffbdabee2b50bc18a63 Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Mon, 28 Aug 2023 13:03:04 +0200 Subject: [PATCH] Fix typo --- .../ftue/impl/migration/SharedPrefsMigrationScreenStore.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/ftue/impl/src/main/kotlin/io/element/android/features/ftue/impl/migration/SharedPrefsMigrationScreenStore.kt b/features/ftue/impl/src/main/kotlin/io/element/android/features/ftue/impl/migration/SharedPrefsMigrationScreenStore.kt index 8ac957f406..c39a535e7d 100644 --- a/features/ftue/impl/src/main/kotlin/io/element/android/features/ftue/impl/migration/SharedPrefsMigrationScreenStore.kt +++ b/features/ftue/impl/src/main/kotlin/io/element/android/features/ftue/impl/migration/SharedPrefsMigrationScreenStore.kt @@ -49,7 +49,7 @@ class SharedPrefsMigrationScreenStore @Inject constructor( } private fun SessionId.toKey(): String { - // Hash the sessionId to get ride of exotic char and take only the first 16 chars, + // Hash the sessionId to get rid of exotic char and take only the first 16 chars, // The risk of collision is not high. return IS_MIGRATION_SCREEN_SHOWN_PREFIX + value.hash().take(16) }