Skip to content

Commit d75d8ec

Browse files
author
Kjell Ahlstedt
committed
Docs: Suppress some links generated by Doxygen
1 parent c75f521 commit d75d8ec

File tree

12 files changed

+13
-12
lines changed

12 files changed

+13
-12
lines changed

libxml++/attribute.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
namespace xmlpp
1616
{
1717

18-
/** Represents an XML Node attribute.
18+
/** Represents an XML attribute node or attribute declaration.
1919
* This will be instantiated by the parser.
2020
*/
2121
class Attribute : public Node

libxml++/attributedeclaration.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ extern "C" {
2020
namespace xmlpp
2121
{
2222

23-
/** Represents the default value of an attribute of an XML Element node.
23+
/** Represents the default value of an attribute of an XML element node.
2424
* This will be instantiated by the parser.
2525
*
2626
* @newin{2,36}

libxml++/attributenode.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ extern "C" {
2121
namespace xmlpp
2222
{
2323

24-
/** Represents an explicit attribute of an XML Element node.
24+
/** Represents an explicit attribute of an XML element node.
2525
* This will be instantiated by the parser.
2626
*
2727
* @newin{2,36}

libxml++/dtd.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ namespace xmlpp
2525
// See https://bugzilla.gnome.org/show_bug.cgi?id=754673#c8 for an explanation
2626
// why it has not been done in libxml++ 3.0.
2727
/** Represents an XML DTD for validating XML files.
28-
* DTD = Document Type Definition
28+
* DTD = %Document Type Definition
2929
*/
3030
class Dtd : public NonCopyable
3131
{

libxml++/nodes/commentnode.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace xmlpp
1313
{
1414

15-
/** Comment Node. This will be instantiated by the parser.
15+
/** Comment node. This will be instantiated by the parser.
1616
*/
1717
class CommentNode : public ContentNode
1818
{

libxml++/nodes/contentnode.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace xmlpp
1313
{
1414

15-
/** Content Node. This will be instantiated by the parser.
15+
/** Content node. This will be instantiated by the parser.
1616
*/
1717
class ContentNode : public Node
1818
{

libxml++/nodes/element.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
namespace xmlpp
1919
{
2020

21-
/** Element nodes have attributes as well as child nodes. This will be instantiated by the parser.
21+
/** %Element nodes have attributes as well as child nodes.
22+
* This will be instantiated by the parser.
2223
*/
2324
class Element : public Node
2425
{

libxml++/nodes/textnode.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace xmlpp
1313
{
1414

15-
/** Text Node. This will be instantiated by the parser.
15+
/** Text node. This will be instantiated by the parser.
1616
*/
1717
class TextNode : public ContentNode
1818
{

libxml++/nodes/xincludeend.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
namespace xmlpp
2525
{
2626

27-
/** XIncludeEnd node.
27+
/** %XIncludeEnd node.
2828
* This will be instantiated by xmlpp::Document::process_xinclude().
2929
*
3030
* @newin{2,36}

libxml++/nodes/xincludestart.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
namespace xmlpp
2525
{
2626

27-
/** XIncludeStart node.
27+
/** %XIncludeStart node.
2828
* This will be instantiated by xmlpp::Document::process_xinclude().
2929
*
3030
* @newin{2,36}

libxml++/parsers/domparser.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
namespace xmlpp {
1414

1515
/** DOM XML parser.
16-
* DOM = Document Object Model
16+
* DOM = %Document Object Model
1717
*/
1818
class DomParser : public Parser
1919
{

libxml++/validators/dtdvalidator.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
namespace xmlpp {
1616

1717
/** XML DTD validator.
18-
* DTD = Document Type Definition
18+
* DTD = %Document Type Definition
1919
*/
2020
class DtdValidator : public Validator
2121
{

0 commit comments

Comments
 (0)