Fix some docs.go nits

x509.h isn't ready for doc.go yet, but fix a few mistakes caught by
previewing it.

Bug: 426
Change-Id: I79630cc1cbe5737cea96143b54c2fa42882077a0
Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/64140
Reviewed-by: Bob Beck <bbe@google.com>
Commit-Queue: David Benjamin <davidben@google.com>
diff --git a/include/openssl/x509.h b/include/openssl/x509.h
index a7e4f01..6cbcd22 100644
--- a/include/openssl/x509.h
+++ b/include/openssl/x509.h
@@ -487,7 +487,7 @@
 // associated with an |X509_TRUST| object.
 OPENSSL_EXPORT int X509_add1_reject_object(X509 *x509, const ASN1_OBJECT *obj);
 
-// X509_reject_clear clears the list of OIDs for which |x509| is trusted. See
+// X509_trust_clear clears the list of OIDs for which |x509| is trusted. See
 // also |X509_add1_trust_object|.
 OPENSSL_EXPORT void X509_trust_clear(X509 *x509);
 
@@ -1902,8 +1902,8 @@
 // discouraged. The parameters structure is very complex, and it takes more
 // bytes to merely encode parameters than an entire P-256 ECDSA signature.
 
-// An RSA_PSS_PARAMS represents a parsed RSASSA-PSS-params structure, as defined
-// in (RFC 4055).
+// An rsa_pss_params_st, aka |RSA_PSS_PARAMS|, represents a parsed
+// RSASSA-PSS-params structure, as defined in (RFC 4055).
 struct rsa_pss_params_st {
   X509_ALGOR *hashAlgorithm;
   X509_ALGOR *maskGenAlgorithm;