diff options
author | Roger Dingledine <arma@torproject.org> | 2015-02-18 19:27:02 -0500 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2015-02-18 19:27:02 -0500 |
commit | 0e4bdc400576ba71ae885e94d32adc0e79e8e7fc (patch) | |
tree | 756b242ee54ebd3216fe5fe25d6c9d79ed18a5ad /src/or/entrynodes.h | |
parent | b401ccefd78593c16da5692c77c8c65976fd63d2 (diff) | |
download | tor-0e4bdc400576ba71ae885e94d32adc0e79e8e7fc.tar.gz tor-0e4bdc400576ba71ae885e94d32adc0e79e8e7fc.zip |
clean up comments and whitespace a bit
Diffstat (limited to 'src/or/entrynodes.h')
-rw-r--r-- | src/or/entrynodes.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/entrynodes.h b/src/or/entrynodes.h index 35bd748d0d..107a562506 100644 --- a/src/or/entrynodes.h +++ b/src/or/entrynodes.h @@ -161,11 +161,11 @@ double pathbias_get_close_success_count(entry_guard_t *guard); double pathbias_get_use_success_count(entry_guard_t *guard); /** Contains the bandwidth of a relay as a guard and as a non-guard - * after the guardfraction has been considered. */ + * after the guardfraction has been considered. */ typedef struct guardfraction_bandwidth_t { - /* Bandwidth as a guard after guardfraction has been considered. */ + /** Bandwidth as a guard after guardfraction has been considered. */ int guard_bw; - /* Bandwidth as a non-guard after guardfraction has been considered. */ + /** Bandwidth as a non-guard after guardfraction has been considered. */ int non_guard_bw; } guardfraction_bandwidth_t; |