Update radio event parm usage descriptions (#2165)

This commit is contained in:
Galen Nickel
2019-06-14 09:27:04 -07:00
committed by Abhijith Chatra
parent 16a3828b1c
commit bf68646d18
8 changed files with 9 additions and 10 deletions

View File

@ -63,7 +63,7 @@ input.onButtonPressed(Button.A, () => {
input.onButtonPressed(Button.B, () => {
radio.sendString("B")
})
radio.onReceivedNumber(({ receivedString }) => {
radio.onReceivedNumber((receivedString) => {
basic.showString(receivedString)
})
```