[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[or-cvs] r17893: {tor} Use doxygen-style comments instead of C-style comments. (tor/trunk/src/or)



Author: kloesing
Date: 2009-01-04 18:44:43 -0500 (Sun, 04 Jan 2009)
New Revision: 17893

Modified:
   tor/trunk/src/or/rephist.c
Log:
Use doxygen-style comments instead of C-style comments.

Modified: tor/trunk/src/or/rephist.c
===================================================================
--- tor/trunk/src/or/rephist.c	2009-01-04 23:15:42 UTC (rev 17892)
+++ tor/trunk/src/or/rephist.c	2009-01-04 23:44:43 UTC (rev 17893)
@@ -1916,23 +1916,23 @@
 /** 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. */