File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
ReSharper.FSharp/src/FSharp.Psi.Services/src/Generate Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ type FSharpGenerateSignatureBuilder() =
8686
8787 if Array.isEmpty supportedTypeDeclarations then null else
8888
89- let sourceText = supportedTypeDeclarations |> Array.map ( fun info -> info.SourceText) |> String.concat " \n "
89+ let sourceText = supportedTypeDeclarations |> Array.map ( fun info -> info.SourceText) |> String.concat lineEnding
9090 let sigTypeDeclarationGroup = factory.CreateModuleMember( sourceText) :?> ITypeDeclarationGroup
9191
9292 if isNull sigTypeDeclarationGroup then null else
@@ -187,7 +187,7 @@ type FSharpGenerateSignatureBuilder() =
187187
188188 let sigStrings =
189189 Seq.map sourceString letBindingsDeclaration.Bindings
190- |> String.concat " \n "
190+ |> String.concat lineEnding
191191
192192 factory.CreateTypeMemberSignature( sigStrings)
193193 | :? IExceptionDeclaration as exceptionDeclaration ->
You can’t perform that action at this time.
0 commit comments