From bfb119cc85776d38ee728d320605abcb3e52448e Mon Sep 17 00:00:00 2001 From: lloyd Date: Wed, 16 Jun 2010 04:03:10 +0000 Subject: Replace "@return a blah" and "@return the blah" with just "@return blah" --- src/cert/x509/crl_ent.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/cert/x509/crl_ent.h') diff --git a/src/cert/x509/crl_ent.h b/src/cert/x509/crl_ent.h index 2b06189e4..ec90750db 100644 --- a/src/cert/x509/crl_ent.h +++ b/src/cert/x509/crl_ent.h @@ -23,19 +23,19 @@ class BOTAN_DLL CRL_Entry : public ASN1_Object /** * Get the serial number of the certificate associated with this entry. - * @return the certificate's serial number + * @return certificate's serial number */ MemoryVector serial_number() const { return serial; } /** * Get the revocation date of the certificate associated with this entry - * @return the certificate's revocation date + * @return certificate's revocation date */ X509_Time expire_time() const { return time; } /** * Get the entries reason code - * @return the reason code + * @return reason code */ CRL_Code reason_code() const { return reason; } -- cgit v1.2.3