Skip to content

Commit

Permalink
fix: typo in node defs: s/creatSign/createSign
Browse files Browse the repository at this point in the history
Summary: Closes #2755

Differential Revision: D4131084

Pulled By: jeffmo

fbshipit-source-id: 9dd5fcbb829411e5951b1de2ffba9c55da92d3c1
  • Loading branch information
keithamus authored and Facebook Github Bot committed Nov 4, 2016
1 parent fb844a3 commit c6c6b3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/node.js
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ declare module "crypto" {
declare function createDiffieHellman(prime: number, encoding?: string): crypto$DiffieHellman;
declare function createHash(algorithm: string): crypto$Hash;
declare function createHmac(algorithm: string, key: string | Buffer): crypto$Hmac;
declare function creatSign(algorithm: string): crypto$Sign;
declare function createSign(algorithm: string): crypto$Sign;
declare function createVerify(algorithm: string): crypto$Verify;
declare function getCiphers(): Array<string>;
declare function getDiffieHellman(group_name: string): crypto$DiffieHellman;
Expand Down

0 comments on commit c6c6b3c

Please sign in to comment.