Remove semicolon

This commit is contained in:
Tomasz Bekas 2023-11-21 13:31:18 +01:00
parent 52bbe9d429
commit 3770d0d1a0
No known key found for this signature in database
GPG Key ID: 4854E04C98824959
1 changed files with 2 additions and 2 deletions

View File

@ -56,8 +56,8 @@ method modify*(self: SQLiteDatastore, key: Key, fn: ModifyAsync): Future[?!void]
return failure("Error running modify function: " & err.msg) return failure("Error running modify function: " & err.msg)
if maybeCurrentData == maybeNewData: if maybeCurrentData == maybeNewData:
# no need to change any stored value # no need to change currently stored value
break; break
if err =? self.db.beginStmt.exec().errorOption: if err =? self.db.beginStmt.exec().errorOption:
return failure(err) return failure(err)