Fixed typos in comments

This commit is contained in:
DJj123dj
2025-02-18 18:18:10 +01:00
parent b12556120c
commit e6c413cdf5
3 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -133,7 +133,7 @@ export class ODVersionMigration {
this.#func = func
this.#afterInitFunc = afterInitFunc
}
/**Run this version migration as a plugin. Returns `false` when someting goes wrong. */
/**Run this version migration as a plugin. Returns `false` when something goes wrong. */
async migrate(): Promise<boolean> {
try{
await this.#func()
@@ -142,7 +142,7 @@ export class ODVersionMigration {
return false
}
}
/**Run this version migration as a plugin. Returns `false` when someting goes wrong. */
/**Run this version migration as a plugin (after other plugins have loaded). Returns `false` when something goes wrong. */
async migrateAfterInit(): Promise<boolean> {
try{
await this.#afterInitFunc()