Skip to content

Commit 9562c20

Browse files
jakecastellinodejs-github-bot
authored andcommitted
doc: sort import order
PR-URL: #46847 Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
1 parent d2d95a3 commit 9562c20

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)