diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-10-16 11:08:34 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-10-16 11:08:34 -0400 |
commit | ce0739314bc581589df3e68d79755e8fbe3e5e6e (patch) | |
tree | 68bdda2db2e344fc9dde8a7eaf38b5804155a473 /src/feature | |
parent | 911adb4d2b4e536eb4bd627a3cdba72f6ddf884b (diff) | |
download | tor-ce0739314bc581589df3e68d79755e8fbe3e5e6e.tar.gz tor-ce0739314bc581589df3e68d79755e8fbe3e5e6e.zip |
voting_schedule: fix doxygen comments to use /**
Previously some of the comments here used /*.
Diffstat (limited to 'src/feature')
-rw-r--r-- | src/feature/dircommon/voting_schedule.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/feature/dircommon/voting_schedule.h b/src/feature/dircommon/voting_schedule.h index d78c7ee2da..fd677fc836 100644 --- a/src/feature/dircommon/voting_schedule.h +++ b/src/feature/dircommon/voting_schedule.h @@ -26,15 +26,15 @@ typedef struct { /** When do we publish the consensus? */ time_t interval_starts; - /* True iff we have generated and distributed our vote. */ + /** True iff we have generated and distributed our vote. */ int have_voted; - /* True iff we've requested missing votes. */ + /** True iff we've requested missing votes. */ int have_fetched_missing_votes; - /* True iff we have built a consensus and sent the signatures around. */ + /** True iff we have built a consensus and sent the signatures around. */ int have_built_consensus; - /* True iff we've fetched missing signatures. */ + /** True iff we've fetched missing signatures. */ int have_fetched_missing_signatures; - /* True iff we have published our consensus. */ + /** True iff we have published our consensus. */ int have_published_consensus; /* True iff this voting schedule was set on demand meaning not through the @@ -62,4 +62,3 @@ time_t voting_schedule_get_start_of_next_interval(time_t now, time_t voting_schedule_get_next_valid_after_time(void); #endif /* !defined(TOR_VOTING_SCHEDULE_H) */ - |