Skip to content

Commit

Permalink
suggestions from review
Browse files Browse the repository at this point in the history
  • Loading branch information
0101 committed Nov 4, 2024
1 parent 3a65014 commit e26076e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions docs/fsharp/whats-new/fsharp-9.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ms.topic: whats-new

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).

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

## Nullable reference types

Expand Down Expand Up @@ -146,7 +146,7 @@ let html =
}
```

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

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

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

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

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

### Random functions for collections

Expand Down Expand Up @@ -512,4 +512,3 @@ The debugger visualizer in Visual Studio now works with F# projects.
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`):

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

0 comments on commit e26076e

Please sign in to comment.