We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8f7051 commit 7f95b99Copy full SHA for 7f95b99
src/FsAutoComplete.Core/SignatureFormatter.fs
@@ -43,11 +43,7 @@ module SignatureFormatter =
43
let rec formatFSharpType (context: FSharpDisplayContext) (typ: FSharpType) : string =
44
let context = context.WithPrefixGenericParameters()
45
46
- let nullabilityClause =
47
- if typ.HasNullAnnotation || typ.IsNullAmbivalent then
48
- " | null"
49
- else
50
- ""
+ let nullabilityClause = if typ.HasNullAnnotation then " | null" else ""
51
52
try
53
if typ.IsTupleType || typ.IsStructTupleType then
0 commit comments