Skip to content

Commit f4f05d2

Browse files
author
SimonePDA
authored
Merge pull request #369 from per1234/boolean-bool
Replace usage of boolean with bool
2 parents 482c0de + 36e8788 commit f4f05d2

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

Language/Functions/Communication/Serial/find.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Serial.find() inherits from the link:../../stream[stream] utility class.
3030

3131
[float]
3232
=== Returns
33-
`boolean`
33+
`bool`
3434

3535
--
3636
// OVERVIEW SECTION ENDS

Language/Functions/Communication/Serial/findUntil.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The function returns true if the target string is found, false if it times out.
3434

3535
[float]
3636
=== Returns
37-
`boolean`
37+
`bool`
3838

3939
--
4040
// OVERVIEW SECTION ENDS

Language/Functions/Communication/Serial/ifSerial.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Nothing
4444

4545
[float]
4646
=== Returns
47-
`boolean` : returns true if the specified serial port is available. This will only return false if querying the Leonardo's USB CDC serial connection before it is ready.
47+
`bool` : returns true if the specified serial port is available. This will only return false if querying the Leonardo's USB CDC serial connection before it is ready.
4848

4949
--
5050
// OVERVIEW SECTION ENDS

Language/Functions/Communication/Stream/streamFind.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ This function is part of the Stream class, and is called by any class that inher
3333

3434
[float]
3535
=== Returns
36-
`boolean`
36+
`bool`
3737

3838
--
3939
// OVERVIEW SECTION ENDS

Language/Functions/Communication/Stream/streamFindUntil.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ This function is part of the Stream class, and is called by any class that inher
3333

3434
[float]
3535
=== Returns
36-
`boolean`
36+
`bool`
3737

3838
--
3939
// OVERVIEW SECTION ENDS

Language/Functions/USB/Mouse/mouseIsPressed.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ When there is no value passed, it checks the status of the left mouse button.
3737

3838
[float]
3939
=== Returns
40-
`boolean` : reports whether a button is pressed or not.
40+
`bool` : reports whether a button is pressed or not.
4141

4242
--
4343
// OVERVIEW SECTION ENDS

0 commit comments

Comments
 (0)