Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

A code fix for fixing inappropriate tuple usages #15417

Open
Tracked by #15408
psfinaki opened this issue Jun 15, 2023 · 0 comments
Open
Tracked by #15408

A code fix for fixing inappropriate tuple usages #15417

psfinaki opened this issue Jun 15, 2023 · 0 comments
Labels
Area-LangService-CodeFixes Code fixes associated with diagnostics Feature Request
Milestone

Comments

@psfinaki
Copy link
Member

Inspired by this: #11234

Basically suggest changing this code

let g a b = "hello"

let f a b : string =
     g a, b

or this code

let g a b = "hello"

let f a b : string =
     g (a, b)

to this

let g a b = "hello"

let f a b : string =
     g a b
@github-actions github-actions bot added this to the Backlog milestone Jun 15, 2023
@psfinaki psfinaki mentioned this issue Jun 15, 2023
85 tasks
@0101 0101 removed the Needs-Triage label Jul 10, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Area-LangService-CodeFixes Code fixes associated with diagnostics Feature Request
Projects
Status: New
Development

No branches or pull requests

2 participants