Modify some comments in ssl_tls13_keys.c

Signed-off-by: Yanray Wang <yanray.wang@arm.com>
diff --git a/library/ssl_tls13_keys.c b/library/ssl_tls13_keys.c
index 90a8618..b92f12e 100644
--- a/library/ssl_tls13_keys.c
+++ b/library/ssl_tls13_keys.c
@@ -1304,12 +1304,12 @@
  *
  *        ssl_tls13_generate_handshake_keys() generates keys necessary for
  *        protecting the handshake messages, as described in Section 7 of
- *        TLS 1.3.
+ *        RFC 8446.
  *
  * \param ssl  The SSL context to operate on. This must be in
  *             key schedule stage \c Handshake, see
  *             ssl_tls13_key_schedule_stage_handshake().
- * \param traffic_keys The address at which to store the handshake traffic key
+ * \param traffic_keys The address at which to store the handshake traffic
  *                     keys. This must be writable but may be uninitialized.
  *
  * \returns    \c 0 on success.
@@ -1532,13 +1532,13 @@
  * \brief Compute TLS 1.3 application traffic keys.
  *
  *        ssl_tls13_generate_application_keys() generates application traffic
- *        keys, since any records following a 1-RTT Finished message MUST be
+ *        keys, since any record following a 1-RTT Finished message MUST be
  *        encrypted under the application traffic key.
  *
  * \param ssl  The SSL context to operate on. This must be in
  *             key schedule stage \c Application, see
  *             ssl_tls13_key_schedule_stage_application().
- * \param traffic_keys The address at which to store the application traffic key
+ * \param traffic_keys The address at which to store the application traffic
  *                     keys. This must be writable but may be uninitialized.
  *
  * \returns    \c 0 on success.