Skip to content

Commit

Permalink
fix typos in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
BuckarooBanzay committed Apr 27, 2020
1 parent 6101e06 commit 4a43225
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ Reading:
```lua
if event.type == "program" then
digiline_send("channel", {
command: "GET",
name: "my_register"
command = "GET",
name = "my_register"
})
end

Expand All @@ -27,9 +27,9 @@ end
Writing:
```lua
digiline_send("channel", {
command: "SET",
name: "my_register",
value: 3.141
command = "SET",
name = "my_register",
value = 3.141
})
```

Expand Down

0 comments on commit 4a43225

Please sign in to comment.