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/cvc/eac_asn_obj.h | |
parent | d066bf6897906ae634f381ddf3250d2ae56f238b (diff) |
Replace "@return a blah" and "@return the blah" with just "@return blah"
Diffstat (limited to 'src/cert/cvc/eac_asn_obj.h')
-rw-r--r-- | src/cert/cvc/eac_asn_obj.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/cert/cvc/eac_asn_obj.h b/src/cert/cvc/eac_asn_obj.h index 9eaf02f63..d0bab6fdd 100644 --- a/src/cert/cvc/eac_asn_obj.h +++ b/src/cert/cvc/eac_asn_obj.h @@ -26,13 +26,13 @@ class BOTAN_DLL EAC_Time : public ASN1_Object /** * Get a this objects value as a string. - * @return the date string + * @return date string */ std::string as_string() const; /** * Get a this objects value as a readable formatted string. - * @return the date string + * @return date string */ std::string readable_string() const; @@ -72,19 +72,19 @@ class BOTAN_DLL EAC_Time : public ASN1_Object /** * Get the year value of this objects. - * @return the year value + * @return year value */ u32bit get_year() const; /** * Get the month value of this objects. - * @return the month value + * @return month value */ u32bit get_month() const; /** * Get the day value of this objects. - * @return the day value + * @return day value */ u32bit get_day() const; @@ -174,13 +174,13 @@ class BOTAN_DLL ASN1_EAC_String: public ASN1_Object /** * Get this objects string value. - * @return the string value + * @return string value */ std::string value() const; /** * Get this objects string value. - * @return the string value in iso8859 encoding + * @return string value in iso8859 encoding */ std::string iso_8859() const; |