Skip to content

Commit 23f63d9

Browse files
smoothdevelopercartermp
authored andcommitted
the ParamData type got out of sync with the comment describing which field is which in #4888 (#8139)
removing the comment and naming the fields
1 parent 73249d0 commit 23f63d9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/fsharp/infos.fs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -577,8 +577,7 @@ type ParamNameAndType =
577577
[<NoComparison; NoEquality>]
578578
/// Full information about a parameter returned for use by the type checker and language service.
579579
type ParamData =
580-
/// ParamData(isParamArray, isOut, optArgInfo, callerInfo, nameOpt, reflArgInfo, ttype)
581-
ParamData of bool * bool * bool * OptionalArgInfo * CallerInfo * Ident option * ReflectedArgInfo * TType
580+
ParamData of isParamArray: bool * isInArg: bool * isOut: bool * optArgInfo: OptionalArgInfo * callerInfo: CallerInfo * nameOpt: Ident option * reflArgInfo: ReflectedArgInfo * ttype: TType
582581

583582

584583
//-------------------------------------------------------------------------

0 commit comments

Comments
 (0)