Skip to content

Commit

Permalink
Remove extra ticks
Browse files Browse the repository at this point in the history
  • Loading branch information
sfodagain committed Feb 2, 2024
1 parent 03e81ef commit 2cac945
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions documents/MIGRATION_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -456,12 +456,12 @@ var device = deviceModule({
_Example of tweaking reconnection settings in V2_
```typescript
`configBbuilder``.``withMinReconnectDelayMs``(2500``);`
configBbuilder`.``withMaxReconnectDelayMs``(``10000``);`
configBbuilder`.``withRetryJitterMode``(``mqtt5``.``Retry``JitterMode``.``Full``);`
configBbuilder.withMinReconnectDelayMs(2500);
configBbuilder.withMaxReconnectDelayMs(10000);
configBbuilder.withRetryJitterMode(mqtt5.RetryJitterMode.Full);

`let`` config ``:`` mqtt5``.``Mqtt5ClientConfig`` ``=`` configBuilder``.``build``();`
`let`` client ``:`` mqtt5``.``Mqtt5Client`` ``=`` ``new`` mqtt5``.``Mqtt5Client``(``config``);`
let config : mqtt5.Mqtt5ClientConfig = configBuilder.build();
let client : mqtt5.Mqtt5Client = new mqtt5.Mqtt5Client(config);
```
Expand Down Expand Up @@ -548,7 +548,7 @@ class.
V2 SDK supports device shadow service as well, but with completely different API.\
First, you subscribe to special topics to get data and feedback from a service. The service client provides API for that.
For example, `SubscribeToGetShadow``Accepted` subscribes to a topic to which AWS IoT Core will publish a shadow document;
For example, `SubscribeToGetShadowAccepted` subscribes to a topic to which AWS IoT Core will publish a shadow document;
and via the `SubscribeToGetShadowRejected` the server will notify you if it cannot send you a requested document.\
After subscribing to all the required topics, the service client can start interacting with the server, for example update
the status or request for data. These actions are also performed via client API calls. For example, `PublishGetShadow`
Expand Down

0 comments on commit 2cac945

Please sign in to comment.