Skip to content

Commit 7d96dad

Browse files
committed
remove \r\n
1 parent bc3b5be commit 7d96dad

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Src/Exceptions.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ module internal VersionInfo =
1313
let versionInfo =
1414
let v = typeof<Dummy>.Assembly.GetName().Version
1515
lazy
16-
$"\r\nRhinoApp.Version:{RhinoApp.Version}\r\nRhino.Scripting Version:{v}\r\n"
16+
$"{Environment.NewLine}Rhino:{RhinoApp.Version}{Environment.NewLine}Rhino.Scripting:{v}{Environment.NewLine}"
1717

1818

1919
open VersionInfo

combineIntoOneFile.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ module CombineIntoOneFile =
9191
let n = file.Replace("Src/Scripting_", " ")
9292
lines.AddRange(file|> getLines |> afterMarker file)
9393
if i%7 =0 then
94-
printf "\r\n -- %s" n
94+
printf $"{Environment.NewLine} -- %s{n}"
9595
else
9696
printf " %s" n
9797
printfn ""

0 commit comments

Comments
 (0)