Skip to content

Commit

Permalink
chore: start 'booking'-word with capital letter
Browse files Browse the repository at this point in the history
  • Loading branch information
dantetemplar committed Feb 13, 2024
1 parent 851bdbc commit 52f30f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/root/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def _booking_to_vevent(booking):
vevent.add("dtstart", icalendar.vDatetime(booking.time_start))
vevent.add("dtend", icalendar.vDatetime(booking.time_end))
vevent.add("location", "Music Room 020")
vevent.add("summary", f"booking @{booking.participant_alias}")
vevent.add("summary", f"Booking @{booking.participant_alias}")
return vevent


Expand Down

0 comments on commit 52f30f9

Please sign in to comment.