From ce4b98eb57787f9c32764c24aae2554303d502ac Mon Sep 17 00:00:00 2001 From: KwonEunKyung <33508558+KwonEunKyung@users.noreply.github.com> Date: Fri, 13 Nov 2020 18:59:52 +0900 Subject: [PATCH] fixed typo in Migrations.kt --- src/main/java/com/nextcloud/client/migrations/Migrations.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/nextcloud/client/migrations/Migrations.kt b/src/main/java/com/nextcloud/client/migrations/Migrations.kt index 90b9bf8e1055..d242b2382a6a 100644 --- a/src/main/java/com/nextcloud/client/migrations/Migrations.kt +++ b/src/main/java/com/nextcloud/client/migrations/Migrations.kt @@ -49,7 +49,7 @@ class Migrations @Inject constructor( * metadata required to register and log overall migration progress. * * @param id Step id; id must be unique; this is verified upon registration - * @param description Human readable migration step descriptionsss + * @param description Human readable migration step descriptions * @param mandatory If true, failing migration will cause an exception; if false, it will be skipped and repeated * again on next startup * @throws Exception migration logic is permitted to throw any kind of exceptions; all exceptions will be wrapped @@ -58,7 +58,7 @@ class Migrations @Inject constructor( abstract class Step(val id: Int, val description: String, val mandatory: Boolean = true) : Runnable /** - * Migrate legacy accounts by addming user IDs. This migration can be re-tried until all accounts are + * Migrate legacy accounts by adding user IDs. This migration can be re-tried until all accounts are * successfully migrated. */ private val migrateUserId = object : Step(0, "Migrate user id", false) {