Skip to content

Commit

Permalink
Merge pull request #7316 from KwonEunKyung/ek
Browse files Browse the repository at this point in the history
fixed typo in Migrations.kt
  • Loading branch information
AndyScherzinger authored Nov 13, 2020
2 parents c2fb05a + ce4b98e commit 7f0ef32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/nextcloud/client/migrations/Migrations.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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) {
Expand Down

0 comments on commit 7f0ef32

Please sign in to comment.