Skip to content

Commit 810d393

Browse files
jakecastellidanielleadams
authored andcommitted
doc: sort import order
PR-URL: #46847 Reviewed-By: Anatoli Papirovski <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent 6e03499 commit 810d393

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/api/crypto.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,8 @@ console.log(Certificate.verifySpkac(Buffer.from(spkac)));
178178
```
179179

180180
```cjs
181-
const { Certificate } = require('node:crypto');
182181
const { Buffer } = require('node:buffer');
182+
const { Certificate } = require('node:crypto');
183183

184184
const spkac = getSpkacSomehow();
185185
console.log(Certificate.verifySpkac(Buffer.from(spkac)));
@@ -292,8 +292,8 @@ console.log(cert.verifySpkac(Buffer.from(spkac)));
292292
```
293293

294294
```cjs
295-
const { Certificate } = require('node:crypto');
296295
const { Buffer } = require('node:buffer');
296+
const { Certificate } = require('node:crypto');
297297

298298
const cert = Certificate();
299299
const spkac = getSpkacSomehow();

0 commit comments

Comments
 (0)