Add missing word in documentation of mbedtls_ssl_check_record()
diff --git a/include/mbedtls/ssl.h b/include/mbedtls/ssl.h
index 8e128c1..955104a 100644
--- a/include/mbedtls/ssl.h
+++ b/include/mbedtls/ssl.h
@@ -1780,8 +1780,8 @@
  * \note           This routine only checks whether the provided buffer begins
  *                 with a valid, fresh and authentic record, but does not check
  *                 potential data following the initial record. In particular,
- *                 it is possible to pass DTLS datagrams containing records,
- *                 in which case only the first record is checked.
+ *                 it is possible to pass DTLS datagrams containing multiple
+ *                 records, in which case only the first record is checked.
  *
  * \note           This function modifies the input buffer \p buf. If you need
  *                 to preserve the original record, you have to maintain a copy.