Skip to content

Replace usage of boolean with bool #369

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 11, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Language/Functions/Communication/Serial/find.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Serial.find() inherits from the link:../../stream[stream] utility class.

[float]
=== Returns
`boolean`
`bool`

--
// OVERVIEW SECTION ENDS
Expand Down
2 changes: 1 addition & 1 deletion Language/Functions/Communication/Serial/findUntil.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ The function returns true if the target string is found, false if it times out.

[float]
=== Returns
`boolean`
`bool`

--
// OVERVIEW SECTION ENDS
Expand Down
2 changes: 1 addition & 1 deletion Language/Functions/Communication/Serial/ifSerial.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Nothing

[float]
=== Returns
`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.
`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.

--
// OVERVIEW SECTION ENDS
Expand Down
2 changes: 1 addition & 1 deletion Language/Functions/Communication/Stream/streamFind.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ This function is part of the Stream class, and is called by any class that inher

[float]
=== Returns
`boolean`
`bool`

--
// OVERVIEW SECTION ENDS
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ This function is part of the Stream class, and is called by any class that inher

[float]
=== Returns
`boolean`
`bool`

--
// OVERVIEW SECTION ENDS
2 changes: 1 addition & 1 deletion Language/Functions/USB/Mouse/mouseIsPressed.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ When there is no value passed, it checks the status of the left mouse button.

[float]
=== Returns
`boolean` : reports whether a button is pressed or not.
`bool` : reports whether a button is pressed or not.

--
// OVERVIEW SECTION ENDS
Expand Down