From a93015657ed5be6bafd9f7516f3a5523eb692775 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Sun, 20 Jul 2003 14:37:34 +0000 Subject: [PATCH] Make "Enumeration" plural in the documentation contents. --- mxmldoc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mxmldoc.c b/mxmldoc.c index 07d7169..5747d8b 100644 --- a/mxmldoc.c +++ b/mxmldoc.c @@ -1,5 +1,5 @@ /* - * "$Id: mxmldoc.c,v 1.13 2003/07/20 13:41:17 mike Exp $" + * "$Id: mxmldoc.c,v 1.14 2003/07/20 14:37:34 mike Exp $" * * Documentation generator using mini-XML, a small XML-like file parsing * library. @@ -1407,7 +1407,7 @@ write_documentation(mxml_node_t *doc) /* I - XML documentation */ if (mxmlFindElement(doc, doc, "class", NULL, NULL, MXML_DESCEND_FIRST)) puts("\t
  • Classes
  • "); if (mxmlFindElement(doc, doc, "enumeration", NULL, NULL, MXML_DESCEND_FIRST)) - puts("\t
  • Enumeration
  • "); + puts("\t
  • Enumerations
  • "); if (mxmlFindElement(doc, doc, "function", NULL, NULL, MXML_DESCEND_FIRST)) puts("\t
  • Functions
  • "); if (mxmlFindElement(doc, doc, "struct", NULL, NULL, MXML_DESCEND_FIRST)) @@ -2080,5 +2080,5 @@ ws_cb(mxml_node_t *node, /* I - Element node */ /* - * End of "$Id: mxmldoc.c,v 1.13 2003/07/20 13:41:17 mike Exp $". + * End of "$Id: mxmldoc.c,v 1.14 2003/07/20 14:37:34 mike Exp $". */