Skip to content

Commit c7beb60

Browse files
Fixed typo in comment
1 parent 0a5ce27 commit c7beb60

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/application/services/book_service.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ void BookService::mergeBooks(Book& original, const Book& mergee)
430430
MergeStatus BookService::mergeCurrentPage(domain::entities::Book& original,
431431
const domain::entities::Book& mergee)
432432
{
433-
// Take the current time in seconds, so there are no ms dismatches
433+
// Take the current time in seconds, so there are no ms mismatches
434434
auto mergeeLastOpened = mergee.getLastOpened().toSecsSinceEpoch();
435435
auto originalLastOpened = original.getLastOpened().toSecsSinceEpoch();
436436

@@ -451,7 +451,7 @@ MergeStatus BookService::mergeCurrentPage(domain::entities::Book& original,
451451
MergeStatus BookService::mergeBookData(domain::entities::Book& original,
452452
const domain::entities::Book& mergee)
453453
{
454-
// Take the current time in seconds, so there are no ms dismatches
454+
// Take the current time in seconds, so there are no ms mismatches
455455
auto mergeeLastModified = mergee.getLastModified().toSecsSinceEpoch();
456456
auto originalLastModified = original.getLastModified().toSecsSinceEpoch();
457457

0 commit comments

Comments
 (0)