Skip to content

Commit e26076e

Browse files
committed
suggestions from review
1 parent 3a65014 commit e26076e

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

docs/fsharp/whats-new/fsharp-9.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.topic: whats-new
99

1010
F# 9 introduces a range of enhancements that make your programs safer, more resilient, and performant. This article highlights the major changes in F# 9, developed in the [F# open source code repository](https://github.com/dotnet/fsharp).
1111

12-
You can download the latest .NET SDK from the [.NET downloads page](https://dotnet.microsoft.com/download).
12+
F# 9 is available in .NET 9. You can download the latest .NET SDK from the [.NET downloads page](https://dotnet.microsoft.com/download).
1313

1414
## Nullable reference types
1515

@@ -146,7 +146,7 @@ let html =
146146
}
147147
```
148148

149-
Writing an empty computation expression will result in a call to the CE builder's `Zero` method.
149+
Writing an empty computation expression will result in a call to the computation expression builder's `Zero` method.
150150

151151
This is a more natural syntax compared to the previously available `builder { () }`.
152152

@@ -252,7 +252,7 @@ When you ran the tests with `dotnet test`, they would pass. Since the test funct
252252

253253
Now, with correct attribute enforcement, you will get an `error FS0842: This attribute is not valid for use on this language element`.
254254

255-
## Updates to the standard library (FSharp.Core)
255+
## Updates to the [standard library (FSharp.Core)](https://fsharp.github.io/fsharp-core-docs/)
256256

257257
### Random functions for collections
258258

@@ -512,4 +512,3 @@ The debugger visualizer in Visual Studio now works with F# projects.
512512
Previously, signature help wasn't offered in a situation like the following, where a function in the middle of a pipeline already had a complex curried parameter (for example, a lambda) applied to it. Now, the signature tooltip shows up for the next parameter (`state`):
513513

514514
![tooltip](../media/whats-new/fsharp-9/help.png)
515-

0 commit comments

Comments
 (0)