Skip to content

Commit ea898e7

Browse files
committed
2 parents 944a842 + 418c1a5 commit ea898e7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/projects/spy/micro-chat.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ radio.setGroup(1)
4747
input.onButtonPressed(Button.A, function() {
4848
radio.sendString("Micro Chat!")
4949
})
50-
radio.onReceivedString(function (receivedString) {
50+
radio.onReceivedString(function(receivedString: string) {
5151
})
5252
```
5353

@@ -60,7 +60,7 @@ radio.setGroup(1)
6060
input.onButtonPressed(Button.A, function() {
6161
radio.sendString("Micro Chat!")
6262
})
63-
radio.onReceivedString(function (receivedString) {
63+
radio.onReceivedString(function(receivedString: string) {
6464
// @highlight
6565
basic.showString(receivedString)
6666
})

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pxt-microbit",
3-
"version": "7.1.26",
3+
"version": "7.1.27",
44
"description": "micro:bit target for Microsoft MakeCode (PXT)",
55
"keywords": [
66
"JavaScript",

0 commit comments

Comments
 (0)