Skip to content

Commit

Permalink
add missing space in signature creation (#1347)
Browse files Browse the repository at this point in the history
  • Loading branch information
dawedawe authored Jan 19, 2025
1 parent bdd0fdf commit db1f44b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FsAutoComplete.Core/SignatureFormatter.fs
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ module SignatureFormatter =
paramTypes
|> List.map (fun p -> formatName p + ":" ++ (formatParameter p))
|> String.concat (" * "))
|> String.concat ("-> ")
|> String.concat (" -> ")

let typeArguments = allParams ++ "->" ++ retType

Expand Down

0 comments on commit db1f44b

Please sign in to comment.