A code fix for fixing inappropriate tuple usages
Open
Area-LangService-CodeFixes
Feature Request
- Dominant language
- F#
- Stars
- 4.3k
- Forks
- 876
- Avg merge
- 4d 11h
- Merged PRs (30d)
- 131
Description
Inspired by this: https://github.com/dotnet/fsharp/issues/11234
Basically suggest changing this code
```fsharp
let g a b = "hello"
let f a b : string =
g a, b
```
or this code
```fsharp
let g a b = "hello"
let f a b : string =
g (a, b)
```
to this
```fsharp
let g a b = "hello"
let f a b : string =
g a b
```
Contributor guide
Assessment
This issue has not been assessed yet.