dotnet / dotnet/fsharp

A code fix for fixing inappropriate tuple usages

Open
#15,417 0 comments 0 reactions 0 assignees View on GitHub
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

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.