Skip to content

Commit 9863342

Browse files
BillWagnermairaw
andcommitted
Apply suggestions from code review
Co-Authored-By: Maira Wenzel <[email protected]>
1 parent d4e6994 commit 9863342

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/csharp/language-reference/toc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
- name: Language reference
22
items:
3-
- name: Using this reference
3+
- name: C# language reference
44
href: index.md
55
- name: Configure language version
66
href: configure-language-version.md
@@ -129,4 +129,4 @@
129129
- name: Pattern based using and using declarations
130130
href: ../../../_csharplang/proposals/csharp-8.0/using.md
131131
- name: null coalescing assignment
132-
href: ../../../_csharplang/proposals/csharp-8.0/null-coalescing-assignment.md
132+
href: ../../../_csharplang/proposals/csharp-8.0/null-coalescing-assignment.md

docs/csharp/misc/cs0139.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ No enclosing loop out of which to break or continue
1212

1313
A break or continue statement was encountered outside of a loop.
1414

15-
For more information, see the [break statement](../../csharp/language-reference/keywords/break.md).
15+
For more information, see the [break](../language-reference/keywords/break.md) and [continue](../language-reference/keywords/continue.md) statements.
1616

1717
The following sample generates CS0139 twice:
1818

docs/csharp/misc/cs0160.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.assetid: 4ef07061-8ef5-42d9-b043-3f81307d569f
1010
# Compiler Error CS0160
1111
A previous catch clause already catches all exceptions of this or of a super type ('type')
1212

13-
A series of **catch** statements needs to be in decreasing order of derivation. For example, the most derived objects must appear first.
13+
A series of [catch](../../csharp/language-reference/keywords/try-catch.md) statements needs to be in decreasing order of derivation. For example, the most derived objects must appear first.
1414

1515
For more information, see [Exceptions and Exception Handling](../../csharp/programming-guide/exceptions/index.md).
1616

0 commit comments

Comments
 (0)