Skip to content

Commit

Permalink
doc: sort import order
Browse files Browse the repository at this point in the history
PR-URL: #46847
Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
  • Loading branch information
jakecastelli authored and danielleadams committed Apr 11, 2023
1 parent 6e03499 commit 810d393
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/api/crypto.md
Expand Up @@ -178,8 +178,8 @@ console.log(Certificate.verifySpkac(Buffer.from(spkac)));
```

```cjs
const { Certificate } = require('node:crypto');
const { Buffer } = require('node:buffer');
const { Certificate } = require('node:crypto');

const spkac = getSpkacSomehow();
console.log(Certificate.verifySpkac(Buffer.from(spkac)));
Expand Down Expand Up @@ -292,8 +292,8 @@ console.log(cert.verifySpkac(Buffer.from(spkac)));
```

```cjs
const { Certificate } = require('node:crypto');
const { Buffer } = require('node:buffer');
const { Certificate } = require('node:crypto');

const cert = Certificate();
const spkac = getSpkacSomehow();
Expand Down

0 comments on commit 810d393

Please sign in to comment.