Skip to content

A code fix for fixing inappropriate tuple usages  #15417

@psfinaki

Description

@psfinaki

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

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    Status

    New

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions