fix the comment so that it is no longer nonsense
diff --git a/src/cryptography/hazmat/backends/openssl/x509.py b/src/cryptography/hazmat/backends/openssl/x509.py
index 01232df..4e91bf4 100644
--- a/src/cryptography/hazmat/backends/openssl/x509.py
+++ b/src/cryptography/hazmat/backends/openssl/x509.py
@@ -924,7 +924,7 @@
@property
def tbs_certrequest_bytes(self):
pp = self._backend._ffi.new("unsigned char **")
- # the X509_CINF struct holds the tbsCertificate data
+ # the X509_REQ_INFO struct holds the CertificateRequestInfo data
res = self._backend._lib.i2d_X509_REQ_INFO(self._x509_req.req_info, pp)
self._backend.openssl_assert(res > 0)
pp = self._backend._ffi.gc(