From 20e898493ff589a867bf6aca56e9a3f6f3f38037 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Sun, 9 May 2004 16:32:33 +0000 Subject: [PATCH] fix a typo in our doxygen instructions svn:r1822 --- trunk/doc/HACKING | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trunk/doc/HACKING b/trunk/doc/HACKING index 7be089977b..0ea9147834 100644 --- a/trunk/doc/HACKING +++ b/trunk/doc/HACKING @@ -454,7 +454,7 @@ the distant future, stuff may have changed.) struct foo { /** You can put the comment before an element; */ int a; - int b, /**< Or use this form to put the comment after the element. */ + int b; /**< Or use the less-than symbol to put the comment after the element. */ }; 5. See the Doxygen manual for more information; this summary just scratches