Skip to content

Commit 903e8d0

Browse files
mjcuvarvagg
authored andcommitted
doc: fix typo in pbkdf2Sync code sample
Function name in code sample had the wrong capitalization. PR-URL: #5306 Reviewed-By: Roman Reiss <me@silverwind.io>
1 parent 79b1c22 commit 903e8d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/api/crypto.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -1130,7 +1130,7 @@ Example:
11301130

11311131
```js
11321132
const crypto = require('crypto');
1133-
const key = crypto.pbkdf2sync('secret', 'salt', 100000, 512, 'sha512');
1133+
const key = crypto.pbkdf2Sync('secret', 'salt', 100000, 512, 'sha512');
11341134
console.log(key.toString('hex')); // 'c5e478d...1469e50'
11351135
```
11361136

0 commit comments

Comments
 (0)