Skip to content

Commit 6497d29

Browse files
authored
Fix attribute axis description (#27465)
1 parent 3a7577e commit 6497d29

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

docs/visual-basic/programming-guide/language-features/xml/accessing-xml.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,42 +16,42 @@ Visual Basic provides XML axis properties for accessing and navigating LINQ to X
1616

1717
The following table lists the language features that enable you to access XML elements and attributes in Visual Basic.
1818

19-
### XML Axis Properties
19+
### XML axis properties
2020

2121
|Property description|Example|Description|
2222
|--------------------------|-------------|-----------------|
2323
|*child axis*|`contact.<phone>`|Gets all `phone` elements that are child elements of the `contact` element.|
24-
|*attribute axis*|`phone.@type`|Gets all `type` attributes of the `phone` element.|
24+
|*attribute axis*|`phone.@type`|Gets the `type` attribute of the `phone` element.|
2525
|*descendant axis*|`contacts...<name>`|Gets all `name` elements of the `contacts` element, regardless of how deep in the hierarchy they occur.|
2626
|*extension indexer*|`contacts...<name>(0)`|Gets the first `name` element from the sequence.|
2727
|*value*|`contacts...<name>.Value`|Gets the string representation of the first object in the sequence, or `Nothing` if the sequence is empty.|
2828

29-
## In This Section
29+
## In this section
3030

31-
[How to: Access XML Descendant Elements](how-to-access-xml-descendant-elements.md)
31+
[How to: Access XML Descendant Elements](how-to-access-xml-descendant-elements.md)\
3232
Shows how to use a descendant axis property to access all XML elements that have a specified name and that are contained under a specified XML element.
3333

34-
[How to: Access XML Child Elements](how-to-access-xml-child-elements.md)
34+
[How to: Access XML Child Elements](how-to-access-xml-child-elements.md)\
3535
Shows how to use a child axis property to access all XML child elements that have a specified name in an XML element.
3636

37-
[How to: Access XML Attributes](how-to-access-xml-attributes.md)
37+
[How to: Access XML Attributes](how-to-access-xml-attributes.md)\
3838
Shows how to use an attribute axis property to access all XML attributes that have a specified name in an XML element.
3939

40-
[How to: Declare and Use XML Namespace Prefixes](how-to-declare-and-use-xml-namespace-prefixes.md)
40+
[How to: Declare and Use XML Namespace Prefixes](how-to-declare-and-use-xml-namespace-prefixes.md)\
4141
Shows how to declare an XML namespace prefix and use it to create and access XML elements.
4242

43-
## Related Sections
43+
## Related sections
4444

45-
[XML Axis Properties](../../../language-reference/xml-axis/index.md)
45+
[XML Axis Properties](../../../language-reference/xml-axis/index.md)\
4646
Provides links to sections describing the various XML access properties.
4747

48-
[Overview of LINQ to XML in Visual Basic](overview-of-linq-to-xml.md)
48+
[Overview of LINQ to XML in Visual Basic](overview-of-linq-to-xml.md)\
4949
Provides an introduction to using LINQ to XML in Visual Basic.
5050

51-
[Creating XML in Visual Basic](creating-xml.md)
51+
[Creating XML in Visual Basic](creating-xml.md)\
5252
Provides an introduction to using XML literals in Visual Basic.
5353

54-
[Manipulating XML in Visual Basic](manipulating-xml.md)
54+
[Manipulating XML in Visual Basic](manipulating-xml.md)\
5555
Provides links to sections about loading and modifying XML in Visual Basic.
5656

5757
[XML](index.md)

0 commit comments

Comments
 (0)