dotnet / dotnet/fsharp

A code fix to change colon to equals in record bindings

Open
#15,674 0 comments 0 reactions 0 assignees View on GitHub
Area-LangService-CodeFixes
Dominant language
F#
Stars
4.3k
Forks
876
Avg merge
4d 22h
Merged PRs (30d)
144

Description

Change this:
```fsharp
type Band = { Name : string }

let band = { Name : "New Order" }
```

to this:
```fsharp
type Band = { Name : string }

let band = { Name = "New Order" }
```

_Originally posted by @0101 in https://github.com/dotnet/fsharp/issues/15456#issuecomment-1600547808_

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.