Skip to content

Commit

Permalink
Fix conversion example (#258)
Browse files Browse the repository at this point in the history
Signed-off-by: Jimmy Tanagra <[email protected]>
  • Loading branch information
jimtng authored Feb 26, 2024
1 parent ae60a30 commit 6b0cea7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/conversions.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ EMAIL = "[email protected]"
rule "Balcony Lights ON at 5pm" do
description "Light will turn on when it's 5:00pm"
every :day, at: '5pm' # This can be written as: `cron "0 0 17 * * ?"` if preferred
tags: %w[Balcony Lights]
uid: "BalconyLightsOn"
tags %w[Balcony Lights]
uid "BalconyLightsOn"
run do |event|
BalconyLights.on
NotificationAction.send_notification(EMAIL, "Balcony lights are ON")
Expand Down

0 comments on commit 6b0cea7

Please sign in to comment.