Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorTobias Nießen <tniessen@tnie.de>2022-04-09 14:41:37 +0300
committerGitHub <noreply@github.com>2022-04-09 14:41:37 +0300
commitb98386c977d0082f3218afe5a746202d40b24d9d (patch)
tree246ebc78e8b5a389cbb66d24df40f33bff1f21e3 /doc
parenta113468383183b84d1a77dbc0625f7dfdcda631f (diff)
doc: add missing article in session ticket section
PR-URL: https://github.com/nodejs/node/pull/42632 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Akhil Marsonya <akhil.marsonya27@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/api/tls.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/tls.md b/doc/api/tls.md
index 69c461a1dc9..09f54188a54 100644
--- a/doc/api/tls.md
+++ b/doc/api/tls.md
@@ -243,7 +243,7 @@ handlers.
The servers encrypt the entire session state and send it
to the client as a "ticket". When reconnecting, the state is sent to the server
-in the initial connection. This mechanism avoids the need for server-side
+in the initial connection. This mechanism avoids the need for a server-side
session cache. If the server doesn't use the ticket, for any reason (failure
to decrypt it, it's too old, etc.), it will create a new session and send a new
ticket. See [RFC 5077][] for more information.