blocks: fix units in set_servo tooltip

This commit is contained in:
Oleg Kalachev
2020-11-10 04:10:41 +03:00
parent 3c8dd14c9d
commit 8aad2fc363

View File

@@ -579,7 +579,7 @@ Blockly.Blocks['set_servo'] = {
this.setColour(COLOR_GPIO);
this.setPreviousStatement(true, null);
this.setNextStatement(true, null);
this.setTooltip("Set PWM on a GPIO pin to control servo. PWM is specified in range of 5002500 ms.");
this.setTooltip("Set PWM on a GPIO pin to control servo. PWM is specified in range of 5002500 μs.");
this.setHelpUrl(DOCS_URL + '#' + this.type);
}
};