Skip to content

Commit ca57369

Browse files
authored
updated title (dotnet#1443)
1 parent 82dfcb5 commit ca57369

15 files changed

+17
-17
lines changed

docs/toc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1565,7 +1565,7 @@
15651565
##### [Handling Reentrancy in Async Apps](visual-basic/programming-guide/concepts/async/handling-reentrancy-in-async-apps.md)
15661566
##### [Using Async for File Access](visual-basic/programming-guide/concepts/async/using-async-for-file-access.md)
15671567

1568-
#### [Attributes](visual-basic/programming-guide/concepts/attributes/index.md)
1568+
#### [Attributes overview](visual-basic/programming-guide/concepts/attributes/index.md)
15691569
##### [Creating Custom Attributes](visual-basic/programming-guide/concepts/attributes/creating-custom-attributes.md)
15701570
###### [AttributeUsage](visual-basic/programming-guide/concepts/attributes/attributeusage.md)
15711571
##### [Accessing Attributes by Using Reflection](visual-basic/programming-guide/concepts/attributes/accessing-attributes-by-using-reflection.md)

docs/visual-basic/language-reference/attributes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ translation.priority.ht:
4444
|<xref:Microsoft.VisualBasic.VBFixedStringAttribute>|Indicates that a string should be treated as if it were fixed length.|
4545

4646
## See Also
47-
[Attributes](../../visual-basic/programming-guide/concepts/attributes/index.md)
47+
[Attributes overview](../../visual-basic/programming-guide/concepts/attributes/index.md)

docs/visual-basic/language-reference/error-messages/attribute-cannot-be-applied-because-the-format-of-the-guid-is-not-correct.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ A `COMClassAttribute` attribute block specifies a globally unique identifier (GU
5151

5252
## See Also
5353
<xref:System.Guid>
54-
[Attributes](../../../visual-basic/programming-guide/concepts/attributes/index.md)
54+
[Attributes overview](../../../visual-basic/programming-guide/concepts/attributes/index.md)

docs/visual-basic/language-reference/error-messages/elementname-is-obsolete-visual-basic-warning.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ A statement attempts to access a programming element which has been marked with
5050
- Ensure that the source-code reference is spelling the element name correctly.
5151

5252
## See Also
53-
[Attributes](../../../visual-basic/programming-guide/concepts/attributes/index.md)
53+
[Attributes overview](../../../visual-basic/programming-guide/concepts/attributes/index.md)

docs/visual-basic/language-reference/error-messages/extension-attribute-can-be-applied-only-to-module-sub-or-function-declarations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,6 @@ End Namespace
6666
```
6767

6868
## See Also
69-
[Attributes](../../../visual-basic/programming-guide/concepts/attributes/index.md)
69+
[Attributes overview](../../../visual-basic/programming-guide/concepts/attributes/index.md)
7070
[Extension Methods](../../../visual-basic/programming-guide/language-features/procedures/extension-methods.md)
7171
[Module Statement](../../../visual-basic/language-reference/statements/module-statement.md)

docs/visual-basic/language-reference/error-messages/first-statement-of-sub-new-must-be-explicit-call-to-mybase-new-or-myclass-new.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ A class constructor does not explicitly call a base class constructor, and the i
5252
2. Include a call to `MyBase.New()` or `MyClass.New()` as the first statement of the `Sub New` in the derived class.
5353

5454
## See Also
55-
[Attributes](../../../visual-basic/programming-guide/concepts/attributes/index.md)
55+
[Attributes overview](../../../visual-basic/programming-guide/concepts/attributes/index.md)

docs/visual-basic/language-reference/error-messages/identifier-expected.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ A programming element that is not a recognizable declared element name occurs wh
4949

5050
## See Also
5151
[Declared Element Names](../../../visual-basic/programming-guide/language-features/declared-elements/declared-element-names.md)
52-
[Attributes](../../../visual-basic/programming-guide/concepts/attributes/index.md)
52+
[Attributes overview](../../../visual-basic/programming-guide/concepts/attributes/index.md)

docs/visual-basic/language-reference/modifiers/assembly.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ Specifies that an attribute at the beginning of a source file applies to the ent
5151

5252
## See Also
5353
[Module \<keyword>](../../../visual-basic/language-reference/modifiers/module-keyword.md)
54-
[Attributes](../../../visual-basic/programming-guide/concepts/attributes/index.md)
54+
[Attributes overview](../../../visual-basic/programming-guide/concepts/attributes/index.md)

docs/visual-basic/language-reference/modifiers/module-keyword.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ Specifies that an attribute at the beginning of a source file applies to the cur
5050
## See Also
5151
[Assembly](../../../visual-basic/language-reference/modifiers/assembly.md)
5252
[Module Statement](../../../visual-basic/language-reference/statements/module-statement.md)
53-
[Attributes](../../../visual-basic/programming-guide/concepts/attributes/index.md)
53+
[Attributes overview](../../../visual-basic/programming-guide/concepts/attributes/index.md)

docs/visual-basic/language-reference/statements/attribute-list.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Specifies the attributes to be applied to a declared programming element. Multip
5959
## Remarks
6060
You can apply one or more attributes to nearly any programming element (types, procedures, properties, and so forth). Attributes appear in your assembly's metadata, and they can help you annotate your code or specify how to use a particular programming element. You can apply attributes defined by Visual Basic and the .NET Framework, and you can define your own attributes.
6161

62-
For more information on when to use attributes, see [Attributes](../../../visual-basic/programming-guide/concepts/attributes/index.md). For information on attribute names, see [Declared Element Names](../../../visual-basic/programming-guide/language-features/declared-elements/declared-element-names.md).
62+
For more information on when to use attributes, see [Attributes overview](../../../visual-basic/programming-guide/concepts/attributes/index.md). For information on attribute names, see [Declared Element Names](../../../visual-basic/programming-guide/language-features/declared-elements/declared-element-names.md).
6363

6464
## Rules
6565

@@ -83,5 +83,5 @@ Specifies the attributes to be applied to a declared programming element. Multip
8383
## See Also
8484
[Assembly](../../../visual-basic/language-reference/modifiers/assembly.md)
8585
[Module \<keyword>](../../../visual-basic/language-reference/modifiers/module-keyword.md)
86-
[Attributes](../../../visual-basic/programming-guide/concepts/attributes/index.md)
86+
[Attributes overview](../../../visual-basic/programming-guide/concepts/attributes/index.md)
8787
[How to: Break and Combine Statements in Code](../../../visual-basic/programming-guide/program-structure/how-to-break-and-combine-statements-in-code.md)

0 commit comments

Comments
 (0)