dotnet / fsharp

The F# compiler, F# core library, F# language service, and F# tooling integration for Visual Studio
https://dotnet.microsoft.com/languages/fsharp
MIT License
3.82k stars 772 forks source link

Module suffix is visible in VS tooltips #17335

Open psfinaki opened 1 week ago

psfinaki commented 1 week ago

This code:

type MyType = { F: int }

module MyType =
    let func123 x = x

Shows this tooltip for func123: image

AFAIU the Module suffix is supposed to be hidden there, it's confusing like this.