Revert "Update radio event parm usage descriptions (#2075)" (#2077)

This reverts commit 7950f1b4d7.
This commit is contained in:
Galen Nickel
2019-05-29 10:45:10 -07:00
committed by Abhijith Chatra
parent e79ff5f9e2
commit f0e174a4f3
8 changed files with 10 additions and 9 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)
})
```