diff options
author | lloyd <[email protected]> | 2010-06-16 04:03:10 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-06-16 04:03:10 +0000 |
commit | bfb119cc85776d38ee728d320605abcb3e52448e (patch) | |
tree | c9106b742ac4da5b1b43e0de0ed203d9496da468 /src/cert/x509/crl_ent.h | |
parent | d066bf6897906ae634f381ddf3250d2ae56f238b (diff) |
Replace "@return a blah" and "@return the blah" with just "@return blah"
Diffstat (limited to 'src/cert/x509/crl_ent.h')
-rw-r--r-- | src/cert/x509/crl_ent.h | 6 |
1 files changed, 3 insertions, 3 deletions
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<byte> 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; } |