aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2011-03-16 14:47:27 -0400
committerNick Mathewson <nickm@torproject.org>2011-03-16 14:47:27 -0400
commit7f6af7a60281f00fde2e3b3f552edcc5f9311a04 (patch)
treefec5c651baa1953c69872d841e6a48e639fe2333
parent2def9e0a6e8fc4fa21696aa4fa9cfeaf2442e706 (diff)
downloadtor-7f6af7a60281f00fde2e3b3f552edcc5f9311a04.tar
tor-7f6af7a60281f00fde2e3b3f552edcc5f9311a04.tar.gz
Fix up all doxygen warnings other than "foo is not documented"
-rw-r--r--Doxyfile.in2
-rw-r--r--src/common/address.c2
-rw-r--r--src/common/torlog.h2
-rw-r--r--src/or/circuitbuild.c4
-rw-r--r--src/or/connection_or.c2
-rw-r--r--src/or/routerparse.h2
6 files changed, 7 insertions, 7 deletions
diff --git a/Doxyfile.in b/Doxyfile.in
index 41f599d2d..344ee2714 100644
--- a/Doxyfile.in
+++ b/Doxyfile.in
@@ -160,7 +160,7 @@ MULTILINE_CPP_IS_BRIEF = NO
# If set to NO, the detailed description appears after the member
# documentation.
-DETAILS_AT_TOP = NO
+# DETAILS_AT_TOP = NO
# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented
# member inherits the documentation from any documented member that it
diff --git a/src/common/address.c b/src/common/address.c
index a2780fb05..072661bdc 100644
--- a/src/common/address.c
+++ b/src/common/address.c
@@ -788,7 +788,7 @@ tor_addr_compare(const tor_addr_t *addr1, const tor_addr_t *addr2,
* Reduce over-specific masks (>128 for ipv6, >32 for ipv4) to 128 or 32.
*
* The mask is interpreted relative to <b>addr1</b>, so that if a is
- * ::ffff:1.2.3.4, and b is 3.4.5.6,
+ * \::ffff:1.2.3.4, and b is 3.4.5.6,
* tor_addr_compare_masked(a,b,100,CMP_SEMANTIC) is the same as
* -tor_addr_compare_masked(b,a,4,CMP_SEMANTIC).
*
diff --git a/src/common/torlog.h b/src/common/torlog.h
index 791e36394..9b98bec91 100644
--- a/src/common/torlog.h
+++ b/src/common/torlog.h
@@ -5,7 +5,7 @@
/* See LICENSE for licensing information */
/**
- * \file log.h
+ * \file torlog.h
*
* \brief Headers for log.c
**/
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c
index a54f232f5..83ac7a5a1 100644
--- a/src/or/circuitbuild.c
+++ b/src/or/circuitbuild.c
@@ -457,7 +457,7 @@ circuit_build_times_rewind_history(circuit_build_times_t *cbt, int n)
* Add a new build time value <b>time</b> to the set of build times. Time
* units are milliseconds.
*
- * circuit_build_times <b>cbt</a> is a circular array, so loop around when
+ * circuit_build_times <b>cbt</b> is a circular array, so loop around when
* array is full.
*/
int
@@ -655,7 +655,7 @@ circuit_build_times_update_state(circuit_build_times_t *cbt,
/**
* Shuffle the build times array.
*
- * Stolen from http://en.wikipedia.org/wiki/Fisher\u2013Yates_shuffle
+ * Adapted from http://en.wikipedia.org/wiki/Fisher-Yates_shuffle
*/
static void
circuit_build_times_shuffle_and_store_array(circuit_build_times_t *cbt,
diff --git a/src/or/connection_or.c b/src/or/connection_or.c
index 2d2444462..ff863fd55 100644
--- a/src/or/connection_or.c
+++ b/src/or/connection_or.c
@@ -467,7 +467,7 @@ connection_or_init_conn_from_address(or_connection_t *conn,
* Requires that both input connections are open; not is_bad_for_new_circs,
* and not impossibly non-canonical.
*
- * If </b>forgive_new_connections</b> is true, then we do not call
+ * If <b>forgive_new_connections</b> is true, then we do not call
* <b>a</b>better than <b>b</b> simply because b has no circuits,
* unless b is also relatively old.
*/
diff --git a/src/or/routerparse.h b/src/or/routerparse.h
index bde7800b7..3499f18c7 100644
--- a/src/or/routerparse.h
+++ b/src/or/routerparse.h
@@ -5,7 +5,7 @@
/* See LICENSE for licensing information */
/**
- * \file routerpase.h
+ * \file routerparse.h
* \brief Header file for routerparse.c.
**/