diff --git a/src/components/connection-prompt/usb/DoneDownloadingDialog.svelte b/src/components/connection-prompt/usb/DoneDownloadingDialog.svelte index 33c8320a6..6d54d6a3e 100644 --- a/src/components/connection-prompt/usb/DoneDownloadingDialog.svelte +++ b/src/components/connection-prompt/usb/DoneDownloadingDialog.svelte @@ -29,9 +29,9 @@ {$t('connectMB.usb.done.body4')}

- - {$t('popup.connectMB.main.bluetooth.subtitle')} - + + {$t('popup.connectMB.main.bluetooth.subtitle')} + +
- diff --git a/src/script/microbit-interfacing/Microbits.ts b/src/script/microbit-interfacing/Microbits.ts index 2ebfad9e2..1ee1da965 100644 --- a/src/script/microbit-interfacing/Microbits.ts +++ b/src/script/microbit-interfacing/Microbits.ts @@ -101,7 +101,7 @@ class Microbits { } /** - * Attempts to assign and connect via bluetooth, using the given name. + * Attempts to assign and connect via bluetooth, using the given name. * If no name is given, it will search for any nearby microbit. */ public static async connectInput(name?: string) { diff --git a/src/script/microbit-interfacing/OutputMicrobitHandler.ts b/src/script/microbit-interfacing/OutputMicrobitHandler.ts index 18f4aad27..2f4d21077 100644 --- a/src/script/microbit-interfacing/OutputMicrobitHandler.ts +++ b/src/script/microbit-interfacing/OutputMicrobitHandler.ts @@ -60,11 +60,11 @@ class OutputMicrobitHandler implements MicrobitHandler { }); } - public onAccelerometerDataReceived(x: number, y: number, z: number): void { } + public onAccelerometerDataReceived(x: number, y: number, z: number): void {} - public onButtonAPressed(state: MBSpecs.ButtonState): void { } + public onButtonAPressed(state: MBSpecs.ButtonState): void {} - public onButtonBPressed(state: MBSpecs.ButtonState): void { } + public onButtonBPressed(state: MBSpecs.ButtonState): void {} public onMessageReceived(data: string): void { if (data === 'id_mkcd') { @@ -87,7 +87,7 @@ class OutputMicrobitHandler implements MicrobitHandler { Microbits.getOutputOrigin(), version, ); - Logger.log("OutputMicrobitHandler", "Is microbit outdated: " + isOutdated) + Logger.log('OutputMicrobitHandler', 'Is microbit outdated: ' + isOutdated); } }