Skip to content

Commit

Permalink
fixed typos
Browse files Browse the repository at this point in the history
(cherry picked from commit 82ff461)
  • Loading branch information
jruzzi committed Dec 2, 2021
1 parent 1323f96 commit b5aa284
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion CompositeInput/CompositeInput.json
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@
}
},
"events": {
"onDeviceChanged":{
"onDevicesChanged":{
"summary": "Triggered when the composite input device changes",
"params": {
"type":"object",
Expand Down
8 changes: 4 additions & 4 deletions CompositeInput/doc/CompositeInputPlugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -323,13 +323,13 @@ CompositeInput interface events:

| Event | Description |
| :-------- | :-------- |
| [onDeviceChanged](#event.onDeviceChanged) | Triggered when the composite input device changes |
| [onDevicesChanged](#event.onDevicesChanged) | Triggered when the composite input device changes |
| [onInputStatusChanged](#event.onInputStatusChanged) | Triggered when the status of the composite input changes |
| [onSignalChanged](#event.onSignalChanged) | Triggered when the status of the composite input signal changes |


<a name="event.onDeviceChanged"></a>
## *onDeviceChanged [<sup>event</sup>](#head.Notifications)*
<a name="event.onDevicesChanged"></a>
## *onDevicesChanged [<sup>event</sup>](#head.Notifications)*

Triggered when the composite input device changes.

Expand All @@ -349,7 +349,7 @@ Triggered when the composite input device changes.
```json
{
"jsonrpc": "2.0",
"method": "client.events.1.onDeviceChanged",
"method": "client.events.1.onDevicesChanged",
"params": {
"devices": [
{
Expand Down
6 changes: 3 additions & 3 deletions SystemServices/System.json
Original file line number Diff line number Diff line change
Expand Up @@ -574,9 +574,9 @@

},
"getMacAddresses":{
"summary": "Gets the MAC address of the device. The requested details are sent as an `onMacAddressesRetrieved` event.",
"summary": "Gets the MAC address of the device. The requested details are sent as an `onMacAddressesRetreived` event.",
"events": [
"onMACAddressesRetrieved"
"onMacAddressesRetreived"
],
"params": {
"type": "object",
Expand Down Expand Up @@ -1649,7 +1649,7 @@
]
}
},
"onMacAddressesRetrieved":{
"onMacAddressesRetreived":{
"summary": "Triggered when the `getMacAddresses` asynchronous method is invoked",
"params": {
"type" :"object",
Expand Down
12 changes: 6 additions & 6 deletions SystemServices/doc/SystemPlugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -779,9 +779,9 @@ This method takes no parameters.
<a name="method.getMacAddresses"></a>
## *getMacAddresses <sup>method</sup>*

Gets the MAC address of the device. The requested details are sent as an `onMacAddressesRetrieved` event.
Gets the MAC address of the device. The requested details are sent as an `onMacAddressesRetreived` event.

Also see: [onMACAddressesRetrieved](#event.onMACAddressesRetrieved)
Also see: [onMacAddressesRetreived](#event.onMacAddressesRetreived)

### Parameters

Expand Down Expand Up @@ -2770,7 +2770,7 @@ SystemServices interface events:
| [onFirmwarePendingReboot](#event.onFirmwarePendingReboot) | (Version 2) Triggered when the `fireFirmwarePendingReboot` method is invoked |
| [onFirmwareUpdateInfoReceived](#event.onFirmwareUpdateInfoReceived) | Triggered when the `getFirmwareUpdateInfo` asynchronous method is invoked |
| [onFirmwareUpdateStateChange](#event.onFirmwareUpdateStateChange) | Triggered when the state of a firmware update changes |
| [onMacAddressesRetrieved](#event.onMacAddressesRetrieved) | Triggered when the `getMacAddresses` asynchronous method is invoked |
| [onMacAddressesRetreived](#event.onMacAddressesRetreived) | Triggered when the `getMacAddresses` asynchronous method is invoked |
| [onRebootRequest](#event.onRebootRequest) | Triggered when an application invokes the reboot method |
| [onSystemClockSet](#event.onSystemClockSet) | Triggered when the clock on the set-top device is updated |
| [onSystemModeChanged](#event.onSystemModeChanged) | Triggered when the device operating mode changes |
Expand Down Expand Up @@ -2875,8 +2875,8 @@ State details are:
}
```

<a name="event.onMacAddressesRetrieved"></a>
## *onMacAddressesRetrieved <sup>event</sup>*
<a name="event.onMacAddressesRetreived"></a>
## *onMacAddressesRetreived [<sup>event</sup>](#head.Notifications)*

Triggered when the `getMacAddresses` asynchronous method is invoked.

Expand All @@ -2898,7 +2898,7 @@ Triggered when the `getMacAddresses` asynchronous method is invoked.
```json
{
"jsonrpc": "2.0",
"method": "client.events.1.onMacAddressesRetrieved",
"method": "client.events.1.onMacAddressesRetreived",
"params": {
"ecm_mac": "A8:11:XX:FD:0C:XX",
"estb_mac": "A8:11:XX:FD:0C:XX",
Expand Down

0 comments on commit b5aa284

Please sign in to comment.