Skip to content

Commit 0e244f4

Browse files
committed
fix warnings
1 parent 154ac89 commit 0e244f4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/csharp/language-reference/compiler-messages/cs4004.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
description: "Compiler Error CS4004"
33
title: "Compiler Error CS4004"
4-
ms.date: 07/01/20242
4+
ms.date: 07/01/2024
55
f1_keywords:
66
- "CS4004"
77
helpviewer_keywords:

docs/csharp/specification/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ items:
184184
- name: Lock object semantics
185185
href: ../../../_csharplang/proposals/lock-object.md
186186
- name: Allow `ref` and `unsafe`
187-
href: ../../_csharplang/proposals/ref-unsafe-in-terators-async.md
187+
href: ../../../_csharplang/proposals/ref-unsafe-in-terators-async.md
188188
- name: Namespaces
189189
items:
190190
- name: File scoped namespaces

docs/csharp/whats-new/csharp-13.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ var countdown = new TimerRemaining()
7474

7575
The preceding example creates an array that counts down from 9 to 0. In versions before C# 13, the `^` operator can't be used in an object initializer. You need to index the elements from the front.
7676

77-
# `ref` and `unsafe` in iterators and `async` methods
77+
## `ref` and `unsafe` in iterators and `async` methods
7878

7979
Before C# 13, iterator methods (methods that use `yield return`) and `async` methods couldn't declare local `ref` variables, nor could they have an `unsafe` context.
8080

0 commit comments

Comments
 (0)