Skip to content

Commit fd3f489

Browse files
docs: align quotes to "
1 parent fab4bf4 commit fd3f489

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ With node-wot you can create server-side Things, in WoT jargon we call this oper
143143
```JavaScript
144144
// Required steps to create a servient for creating a thing
145145
const { Servient } = require("@node-wot/core");
146-
const { HttpServer } = require('@node-wot/binding-http');
146+
const { HttpServer } = require("@node-wot/binding-http");
147147

148148
const servient = new Servient();
149149
servient.addServer(new HttpServer());
@@ -181,7 +181,7 @@ Now supposing you want to interact with the device, you have to consume its Thin
181181
// client.js
182182
// Required steps to create a servient for a client
183183
const { Servient } = require("@node-wot/core");
184-
const { HttpClientFactory } = require('@node-wot/binding-http');
184+
const { HttpClientFactory } = require("@node-wot/binding-http");
185185

186186
const servient = new Servient();
187187
servient.addClientFactory(new HttpClientFactory(null));

0 commit comments

Comments
 (0)