From 7e51966b3238588398c08b7849fe92ca26e956dd Mon Sep 17 00:00:00 2001 From: Marc Cuva Date: Thu, 18 Feb 2016 11:12:56 -0800 Subject: [PATCH] doc: fix typo in pbkdf2Sync code sample Function name in code sample had the wrong capitalization. PR-URL: https://github.com/nodejs/node/pull/5306 Reviewed-By: Roman Reiss --- doc/api/crypto.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/crypto.markdown b/doc/api/crypto.markdown index e7da73e96386b3..b14c179e017da5 100644 --- a/doc/api/crypto.markdown +++ b/doc/api/crypto.markdown @@ -1128,7 +1128,7 @@ Example: ```js const crypto = require('crypto'); -const key = crypto.pbkdf2sync('secret', 'salt', 100000, 512, 'sha512'); +const key = crypto.pbkdf2Sync('secret', 'salt', 100000, 512, 'sha512'); console.log(key.toString('hex')); // 'c5e478d...1469e50' ```