From f52f688ef61ebfa469034da0910a5677af0b34ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Thu, 28 Dec 2017 13:00:03 +0100 Subject: [PATCH] doc: fix typo PR-URL: https://github.com/nodejs/node/pull/17900 Reviewed-By: Gibson Fahnestock Reviewed-By: Ruben Bridgewater Reviewed-By: Colin Ihrig --- doc/api/crypto.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/crypto.md b/doc/api/crypto.md index bdb2b180290cda..8f65f8d7eb827b 100644 --- a/doc/api/crypto.md +++ b/doc/api/crypto.md @@ -347,7 +347,7 @@ added: v1.0.0 When using an authenticated encryption mode (only `GCM` is currently supported), the `decipher.setAuthTag()` method is used to pass in the received _authentication tag_. If no tag is provided, or if the cipher text -has been tampered with, [`decipher.final()`][] with throw, indicating that the +has been tampered with, [`decipher.final()`][] will throw, indicating that the cipher text should be discarded due to failed authentication. Returns `this` for method chaining.