Skip to content

Commit cef3dad

Browse files
authored
Typo fix (#45076)
1 parent 03a8a34 commit cef3dad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ delegate bool TryParse<T>(string text, out T result);
7878
TryParse<int> parse1 = (text, out result) => Int32.TryParse(text, out result);
7979
```
8080

81-
Previously, adding any modifiers was allowed only when the parameter declarations included the types for the parameters. The preceding declaration would require typs on all parameters:
81+
Previously, adding any modifiers was allowed only when the parameter declarations included the types for the parameters. The preceding declaration would require types on all parameters:
8282

8383
```csharp
8484
TryParse<int> parse2 = (string text, out int result) => Int32.TryParse(text, out result);

0 commit comments

Comments
 (0)