Skip to content
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

Corrected spelling error of the documentation of BluetoothClient: frue → true #2939

Merged
merged 7 commits into from Aug 11, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -194,7 +194,7 @@ public final void Disconnect() {
}

/**
* Returns `frue`{:.logic.block} if a connection to a Bluetooth device has been made.
* Returns `true`{:.logic.block} if a connection to a Bluetooth device has been made.
*/
@SimpleProperty(category = PropertyCategory.BEHAVIOR,
description = "On devices with API level 14 (LEVEL_ICE_CREAM_SANDWICH) or higher, " +
Expand Down
4 changes: 2 additions & 2 deletions appinventor/docs/html/reference/components/connectivity.html
Expand Up @@ -267,7 +267,7 @@ <h3 id="BluetoothClient-Properties">Properties</h3>
<dd>Specifies whether numbers are sent and received with the most significant
byte first.</dd>
<dt id="BluetoothClient.IsConnected" class="boolean ro bo"><em>IsConnected</em></dt>
<dd>Returns <code class="logic block highlighter-rouge">frue</code> if a connection to a Bluetooth device has been made.</dd>
<dd>Returns <code class="logic block highlighter-rouge">true</code> if a connection to a Bluetooth device has been made.</dd>
<dt id="BluetoothClient.NoLocationNeeded" class="boolean do"><em>NoLocationNeeded</em></dt>
<dd>On Android 12 and later, indicates that Bluetooth is not used to determine the user’s location.</dd>
<dt id="BluetoothClient.PollingRate" class="number"><em>PollingRate</em></dt>
Expand Down Expand Up @@ -386,7 +386,7 @@ <h3 id="BluetoothServer-Properties">Properties</h3>
<dd>Returns true if this BluetoothServer component is accepting an
incoming connection.</dd>
<dt id="BluetoothServer.IsConnected" class="boolean ro bo"><em>IsConnected</em></dt>
<dd>Returns <code class="logic block highlighter-rouge">frue</code> if a connection to a Bluetooth device has been made.</dd>
<dd>Returns <code class="logic block highlighter-rouge">true</code> if a connection to a Bluetooth device has been made.</dd>
<dt id="BluetoothServer.Secure" class="boolean"><em>Secure</em></dt>
<dd>Specifies whether a secure connection should be used.</dd>
</dl>
Expand Down
Expand Up @@ -154,7 +154,7 @@ Use `BluetoothClient` to connect your device to other devices using Bluetooth. T
byte first.

{:id="BluetoothClient.IsConnected" .boolean .ro .bo} *IsConnected*
: Returns `frue`{:.logic.block} if a connection to a Bluetooth device has been made.
: Returns `true`{:.logic.block} if a connection to a Bluetooth device has been made.

{:id="BluetoothClient.NoLocationNeeded" .boolean .do} *NoLocationNeeded*
: On Android 12 and later, indicates that Bluetooth is not used to determine the user's location.
Expand Down Expand Up @@ -297,7 +297,7 @@ Use the `BluetoothServer` component to turn your device into a server that recei
incoming connection.

{:id="BluetoothServer.IsConnected" .boolean .ro .bo} *IsConnected*
: Returns `frue`{:.logic.block} if a connection to a Bluetooth device has been made.
: Returns `true`{:.logic.block} if a connection to a Bluetooth device has been made.

{:id="BluetoothServer.Secure" .boolean} *Secure*
: Specifies whether a secure connection should be used.
Expand Down