Skip to content

Commit

Permalink
Use en dash for time ranges (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
cyanzhong authored Nov 21, 2024
1 parent 9c9d420 commit 455fb47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions LunarBarMac/Sources/Views/DateDetailsView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,8 @@ private extension EKCalendarItem {
return Constants.dateFormatter.string(from: startOfItem)
}

// 12:00 - 13:30
return "\(Constants.dateFormatter.string(from: startOfItem)) - \(Constants.dateFormatter.string(from: endOfItem))"
// 12:0013:30
return "\(Constants.dateFormatter.string(from: startOfItem))\(Constants.dateFormatter.string(from: endOfItem))"
}
}

Expand Down

0 comments on commit 455fb47

Please sign in to comment.