From: Michael Poole Date: Tue, 5 Oct 2004 04:14:44 +0000 (+0000) Subject: Fix typos in doxygen comment blocks. X-Git-Url: http://git.pk910.de/?p=ircu2.10.12-pk.git;a=commitdiff_plain;h=b96a241254a053e44b1d1a4a7c0d7430eda04e74 Fix typos in doxygen comment blocks. git-svn-id: file:///home/klmitch/undernet-ircu/undernet-ircu-svn/ircu2/trunk@1229 c9e4aea6-c8fd-4c43-8297-357d70d61c8c --- diff --git a/include/gline.h b/include/gline.h index 7576f07..fdbc1b8 100644 --- a/include/gline.h +++ b/include/gline.h @@ -20,7 +20,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* @file +/** @file * @brief Structures and APIs for G-line manipulation. * @version $Id$ */ diff --git a/include/ircd.h b/include/ircd.h index f7fe77b..789f971 100644 --- a/include/ircd.h +++ b/include/ircd.h @@ -1,4 +1,4 @@ -/* @file ircd.h +/** @file ircd.h * @brief Global data for the daemon. * @version $Id$ */ diff --git a/include/ircd_events.h b/include/ircd_events.h index 56624a0..7524090 100644 --- a/include/ircd_events.h +++ b/include/ircd_events.h @@ -18,7 +18,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* @file +/** @file * @brief Interface and public definitions for event loop. * @version $Id$ */ diff --git a/include/ircd_features.h b/include/ircd_features.h index 4c0e634..92bfd73 100644 --- a/include/ircd_features.h +++ b/include/ircd_features.h @@ -18,7 +18,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* @file +/** @file * @brief Public interfaces and declarations for dealing with configurable features. * @version $Id$ */ diff --git a/include/list.h b/include/list.h index ffed826..1e69ae9 100644 --- a/include/list.h +++ b/include/list.h @@ -1,4 +1,4 @@ -/* @file list.h +/** @file list.h * @brief Singly and doubly linked list manipulation interface. * @version $Id$ */ diff --git a/include/numnicks.h b/include/numnicks.h index 2f7904b..aca184a 100644 --- a/include/numnicks.h +++ b/include/numnicks.h @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* @file +/** @file * @brief Interface for numeric nickname functions. * @version $Id$ */ diff --git a/include/struct.h b/include/struct.h index 7e0cbe7..b78edd3 100644 --- a/include/struct.h +++ b/include/struct.h @@ -18,7 +18,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* @file +/** @file * @brief Structure definitions for users and servers. * @version $Id$ */ diff --git a/include/whowas.h b/include/whowas.h index 8a06267..6f3eae1 100644 --- a/include/whowas.h +++ b/include/whowas.h @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* @file +/** @file * @brief Globally visible declarations to manipulate whowas information. * @version $Id$ */ diff --git a/ircd/gline.c b/ircd/gline.c index a0a1eb8..25b4ca1 100644 --- a/ircd/gline.c +++ b/ircd/gline.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* @file +/** @file * @brief Implementation of Gline manipulation functions. * @version $Id$ */ diff --git a/ircd/ircd.c b/ircd/ircd.c index 01757c1..e55ccec 100644 --- a/ircd/ircd.c +++ b/ircd/ircd.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* @file +/** @file * @brief Entry point and other initialization functions for the daemon. * @version $Id$ */ diff --git a/ircd/ircd_auth.c b/ircd/ircd_auth.c index bcaac31..b6fc1ed 100644 --- a/ircd/ircd_auth.c +++ b/ircd/ircd_auth.c @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA * 02111-1307, USA. */ -/* @file +/** @file * @brief IAuth client implementation for an IRC server. * @version $Id$ */ diff --git a/ircd/ircd_events.c b/ircd/ircd_events.c index 66a521d..ac61fd3 100644 --- a/ircd/ircd_events.c +++ b/ircd/ircd_events.c @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* @file +/** @file * @brief Implementation of event loop mid-layer. * @version $Id$ */ diff --git a/ircd/ircd_features.c b/ircd/ircd_features.c index fcf92f1..9c2ad48 100644 --- a/ircd/ircd_features.c +++ b/ircd/ircd_features.c @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* @file +/** @file * @brief Implementation of configurable feature support. * @version $Id$ */ diff --git a/ircd/ircd_relay.c b/ircd/ircd_relay.c index bd4efa5..5061a4b 100644 --- a/ircd/ircd_relay.c +++ b/ircd/ircd_relay.c @@ -20,7 +20,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* @file +/** @file * @brief Helper functions to relay various types of messages. * @version $Id$ * diff --git a/ircd/list.c b/ircd/list.c index 1975c3d..8ba8d64 100644 --- a/ircd/list.c +++ b/ircd/list.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* @file +/** @file * @brief Singly and doubly linked list manipulation implementation. * @version $Id$ */ diff --git a/ircd/match.c b/ircd/match.c index 87fdac1..0bb6aa9 100644 --- a/ircd/match.c +++ b/ircd/match.c @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* @file +/** @file * @brief Functions to match strings against IRC mask strings. * @version $Id$ */ diff --git a/ircd/numnicks.c b/ircd/numnicks.c index fe9a5fa..f84c335 100644 --- a/ircd/numnicks.c +++ b/ircd/numnicks.c @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* @file +/** @file * @brief Implementation of numeric nickname operations. * @version $Id$ */ @@ -39,7 +39,7 @@ #include -/** @page numnicks %Numeric Nicks +/** @page numnicks Numeric Nicks * %Numeric nicks (numnicks) are new as of version ircu2.10.00beta1. * * The idea is as follows: diff --git a/ircd/os_generic.c b/ircd/os_generic.c index 203c107..f9412b6 100644 --- a/ircd/os_generic.c +++ b/ircd/os_generic.c @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* @file +/** @file * @brief Implementation of OS-dependent operations. * @version $Id$ */ diff --git a/ircd/parse.c b/ircd/parse.c index 9bd0513..693d5ec 100644 --- a/ircd/parse.c +++ b/ircd/parse.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* @file +/** @file * @brief Parse input from IRC clients and other servers. * @version $Id$ */ diff --git a/ircd/s_user.c b/ircd/s_user.c index 268e38a..ff178cf 100644 --- a/ircd/s_user.c +++ b/ircd/s_user.c @@ -20,7 +20,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* @file +/** @file * @brief Miscellaneous user-related helper functions. * @version $Id$ */ diff --git a/ircd/whocmds.c b/ircd/whocmds.c index 3c7581f..255c3fd 100644 --- a/ircd/whocmds.c +++ b/ircd/whocmds.c @@ -20,7 +20,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* @file +/** @file * @brief Support functions for /WHO-like commands. * @version $Id$ */