summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarsten Loesing <karsten.loesing@gmx.net>2009-01-04 23:44:43 +0000
committerKarsten Loesing <karsten.loesing@gmx.net>2009-01-04 23:44:43 +0000
commitfe9790740f4a62e372acc74861677e81b5e3f453 (patch)
tree2c670ecab37413521defc816da851fb9d4f53934
parent765bb14f69e1d8a7998025a690ef4ca3dc56d756 (diff)
downloadtor-fe9790740f4a62e372acc74861677e81b5e3f453.tar.gz
tor-fe9790740f4a62e372acc74861677e81b5e3f453.zip
Use doxygen-style comments instead of C-style comments.
svn:r17893
-rw-r--r--src/or/rephist.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/or/rephist.c b/src/or/rephist.c
index 03bdb3bf40..5a84d31c62 100644
--- a/src/or/rephist.c
+++ b/src/or/rephist.c
@@ -1916,23 +1916,23 @@ typedef struct hs_usage_current_observation_period_t {
/** Usage statistics for the current observation period. */
static hs_usage_current_observation_period_t *current_period = NULL;
-/* Total number of descriptor publish requests in the current observation
+/** Total number of descriptor publish requests in the current observation
* period. */
static hs_usage_service_related_observation_t *publish_total = NULL;
-/* Number of descriptor publish requests for services that have not been
+/** Number of descriptor publish requests for services that have not been
* seen before in the current observation period. */
static hs_usage_service_related_observation_t *publish_novel = NULL;
-/* Total number of descriptor fetch requests in the current observation
+/** Total number of descriptor fetch requests in the current observation
* period. */
static hs_usage_service_related_observation_t *fetch_total = NULL;
-/* Number of successful descriptor fetch requests in the current
+/** Number of successful descriptor fetch requests in the current
* observation period. */
static hs_usage_service_related_observation_t *fetch_successful = NULL;
-/* Number of descriptors stored in the current observation period. */
+/** Number of descriptors stored in the current observation period. */
static hs_usage_general_period_related_observations_t *descs = NULL;
/** Creates an empty ordered list element. */