/reference/types -> /types

This commit is contained in:
Peli de Halleux
2017-03-16 07:57:41 -07:00
parent 69bd0225ad
commit 00e9217e73
116 changed files with 224 additions and 361 deletions

View File

@ -9,7 +9,7 @@ serial.onDataReceived(",", () => {})
### Parameters
* `delimiters` is a [string](/reference/types/string) containing any of the character to match
* `delimiters` is a [string](/types/string) containing any of the character to match
### Example

View File

@ -16,7 +16,7 @@ character. If your terminal software does not terminate lines with
### Returns
* a [string](/reference/types/string) containing input from the serial port, such as a response typed by a user
* a [string](/types/string) containing input from the serial port, such as a response typed by a user
### Example

View File

@ -8,7 +8,7 @@ serial.readString();
### Returns
* a [string](/reference/types/string) containing input from the serial port. Empty if no data available.
* a [string](/types/string) containing input from the serial port. Empty if no data available.
### Example

View File

@ -8,7 +8,7 @@ serial.readUntil(",");
### Returns
* a [string](/reference/types/string) containing input from the serial port, such as a response typed by a user
* a [string](/types/string) containing input from the serial port, such as a response typed by a user
### Example

View File

@ -9,7 +9,7 @@ serial.writeLine("");
### Parameters
* `text` is the [string](/reference/types/string) to write to the serial port
* `text` is the [string](/types/string) to write to the serial port
### Example: simple serial

View File

@ -8,7 +8,7 @@ serial.writeNumber(0);
### Parameters
* `value` is the [number](/reference/types/number) to write to the serial port
* `value` is the [number](/types/number) to write to the serial port
### Example: one through ten

View File

@ -9,7 +9,7 @@ serial.writeString("");
### Parameters
* `text` is the [string](/reference/types/string) to write to the serial port
* `text` is the [string](/types/string) to write to the serial port
### Example: simple serial

View File

@ -8,8 +8,8 @@ serial.writeValue("x", 0);
### Parameters
* `name` is the [string](/reference/types/string) to write to the serial port
* `value` is the [number](/reference/types/number) to write to the serial port
* `name` is the [string](/types/string) to write to the serial port
* `value` is the [number](/types/number) to write to the serial port