diff options
author | Christian Grothoff <christian@grothoff.org> | 2015-03-28 15:53:53 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2015-03-28 15:53:53 +0100 |
commit | 708b463580dd8ca29cda085e11e8731bd83f8130 (patch) | |
tree | 7eb5e1d44f9079057d0498a217993734b09a9937 /src/include/taler_amount_lib.h | |
parent | e4cbe66780bd354fac79db155a12c33a9c68fbbc (diff) |
more doxygen fixes
Diffstat (limited to 'src/include/taler_amount_lib.h')
-rw-r--r-- | src/include/taler_amount_lib.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/taler_amount_lib.h b/src/include/taler_amount_lib.h index 069da1d6c..60405a2e4 100644 --- a/src/include/taler_amount_lib.h +++ b/src/include/taler_amount_lib.h @@ -23,7 +23,7 @@ /** - * Number of characters (plus 1 for 0-termination) we use to + * @brief Number of characters (plus 1 for 0-termination) we use to * represent currency names (i.e. EUR, USD, etc.). We use * 4 for alignment as 3 characters are typical and we need a * 0-terminator. So do not change this. @@ -31,7 +31,7 @@ #define TALER_CURRENCY_LEN 4 /** - * The "fraction" value in a `struct TALER_Amount` represents which + * @brief The "fraction" value in a `struct TALER_Amount` represents which * fraction of the "main" value? * * Note that we need sub-cent precision here as transaction fees might @@ -40,7 +40,7 @@ #define TALER_AMOUNT_FRAC_BASE 1000000 /** - * How many digits behind the comma are required to represent the + * @brief How many digits behind the comma are required to represent the * fractional value in human readable decimal format? Must match * lg(#TALER_AMOUNT_FRAC_BASE). */ @@ -51,7 +51,7 @@ GNUNET_NETWORK_STRUCT_BEGIN /** - * Amount, encoded for network transmission. + * @brief Amount, encoded for network transmission. */ struct TALER_AmountNBO { @@ -75,7 +75,7 @@ GNUNET_NETWORK_STRUCT_END /** - * Representation of monetary value in a given currency. + * @brief Representation of monetary value in a given currency. */ struct TALER_Amount { |