Fixes for typos found in Crowdin - 11252019 (#1014)

This commit is contained in:
Galen Nickel 2019-11-25 16:33:04 -08:00 коммит произвёл Peli de Halleux
Родитель e19fac05e7
Коммит 6767f0c297
7 изменённых файлов: 9 добавлений и 9 удалений

Просмотреть файл

@ -104,7 +104,7 @@ namespace azureiot {
}
/**
* Registers code when the mqtt client gets connector or disconnected
* Registers code when the MQTT client gets connected or disconnected
* @param event
* @param handler
*/

Просмотреть файл

@ -22,7 +22,7 @@ namespace configStorage {
}
/**
* Stores the value at the key entry
* Retrieves the value at the key entry
* @param key identifier of the key (max 16 characters)
*/
export function getItem(key: string): string {

Просмотреть файл

@ -11,8 +11,8 @@ namespace light {
/**
* Send a programmable light buffer to the specified digital pin
* @param data The pin that the light are connected to
* @param clk the clock line if nay
* @param data The pin that the lights are connected to
* @param clk the clock line if any
* @param mode the color encoding mode
* @param buf The buffer to send to the pin
*/

Просмотреть файл

@ -16,7 +16,7 @@ The following pins must be configured ``config.ts`` for JACDAC to work on a boar
* ``PIN_JACK_TX``: pin with EINT, SERCOM[0]. To determine if the pin is compatible with JACDAC, consult the MCU schematics.
* (optional) ``PIN_JACK_COMMLED``: LED pin, blinks when packet is received or transmitted
* (optiona;) ``JACK_BUSLED``: LED pin, turns on when JACDAC is connected
* (optional) ``JACK_BUSLED``: LED pin, turns on when JACDAC is connected
### Simulator configuration

Просмотреть файл

@ -107,14 +107,14 @@ namespace jacdac {
}
/**
* Gest the required device names
* Get the required device names
*/
get requiredDeviceName() {
return this.requiredDevice && this.requiredDevice.device_name;
}
/**
* Sets the required device name
* Set the required device name
*/
set requiredDeviceName(name: string) {
const dev = new jacdac.JDRequiredDevice();

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "serial",
"description": "UART communicatoin",
"description": "UART communication",
"files": [
"serial-target.h",
"serial-common.h",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "thermometer",
"description": "A thermometer cdriver",
"description": "A thermometer driver",
"files": [
"README.md",
"temperature.cpp",