Skip to content

Commit

Permalink
Use relative times for tomorrow for events in protocol 7 documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
synthead committed Aug 13, 2023
1 parent ae4cdb4 commit ba1a721
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/dsi_ebrain_protocol_7.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,11 +224,11 @@ crashing_around_the_house = phrase_builder.vocab_ids_for("Crashing", "Around", "

events = [
TimexDatalinkClient::Protocol7::Eeprom::Calendar::Event.new(
time: Time.new(2022, 12, 13, 9, 0, 0),
time: Time.new(time.year, time.month, time.day + 1, 9, 0, 0),
phrase: breakfast_with_cousins
),
TimexDatalinkClient::Protocol7::Eeprom::Calendar::Event.new(
time: Time.new(2022, 12, 13, 19, 0, 0),
time: Time.new(time.year, time.month, time.day + 1, 19, 0, 0),
phrase: crashing_around_the_house
)
]
Expand Down

0 comments on commit ba1a721

Please sign in to comment.