docs: fix simple typo, serveral -> several (#8558)

There is a small typo in certbot/certbot/ocsp.py.

Should read `several` rather than `serveral`.
This commit is contained in:
Tim Gates 2020-12-22 10:29:00 +11:00 committed by GitHub
parent 421e8b6270
commit a7c3c0b90c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -222,7 +222,7 @@ def _check_ocsp_cryptography(cert_path, chain_path, url, timeout):
def _check_ocsp_response(response_ocsp, request_ocsp, issuer_cert, cert_path):
"""Verify that the OCSP is valid for serveral criteria"""
"""Verify that the OCSP is valid for several criteria"""
# Assert OCSP response corresponds to the certificate we are talking about
if response_ocsp.serial_number != request_ocsp.serial_number:
raise AssertionError('the certificate in response does not correspond '