Browse Source

comment cleanups

svn:r5181
Roger Dingledine 20 years ago
parent
commit
88c37f2d24
2 changed files with 3 additions and 3 deletions
  1. 2 2
      src/or/circuitbuild.c
  2. 1 1
      src/or/control.c

+ 2 - 2
src/or/circuitbuild.c

@@ -1663,7 +1663,7 @@ pick_helper_nodes(void)
     helper_nodes_changed();
 }
 
-/** Remove all elements from the list of helper nodes */
+/** Remove all elements from the list of helper nodes. */
 static void
 clear_helper_nodes(void)
 {
@@ -1672,7 +1672,7 @@ clear_helper_nodes(void)
   helper_nodes_changed();
 }
 
-/** Release all storage held by the list of helper nodes */
+/** Release all storage held by the list of helper nodes. */
 void
 helper_nodes_free_all(void)
 {

+ 1 - 1
src/or/control.c

@@ -381,7 +381,7 @@ read_escaped_data(const char *data, size_t len, int translate_newlines,
  * string (unquoted, unescaped) into a newly allocated string in *<b>out</b>;
  * store its length in <b>out_len</b>.  On success, return a pointer to the
  * character immediately following the escaped string.  On failure, return
- * NULL. **/
+ * NULL. */
 static const char *
 get_escaped_string(const char *start, size_t in_len_max,
                    char **out, size_t *out_len)