소스 검색

Merge pull request #7316 from KwonEunKyung/ek

fixed typo in Migrations.kt
Andy Scherzinger 4 년 전
부모
커밋
7f0ef32dfd
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/main/java/com/nextcloud/client/migrations/Migrations.kt

+ 2 - 2
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) {