Skip to content

Commit 9d85c94

Browse files
committed
Fix formatting
1 parent e3d8e61 commit 9d85c94

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.fsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,8 @@ pipeline "Release" {
451451
let notes = getReleaseNotes currentRelease lastRelease
452452
let noteFile = Path.GetTempFileName()
453453
File.WriteAllText(noteFile, notes)
454-
let files = [ yield! nugetPackages; yield! aotCompiledExecutableFiles ] |> String.concat " "
454+
let files =
455+
[ yield! nugetPackages; yield! aotCompiledExecutableFiles ] |> String.concat " "
455456

456457
// We create a draft release for minor and majors. Those that requires a manual publish.
457458
// This is to allow us to add additional release notes when it makes sense.

src/Fantomas.Core/ASTTransformer.fs

+1-2
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,7 @@ let mkConstant (creationAide: CreationAide) c r : Constant =
135135
| SynConst.UInt64 v -> orElse (v.ToString() + "uL")
136136
| SynConst.Double v -> orElse (v.ToString("r"))
137137
| SynConst.Single v -> orElse (v.ToString("r") + "f")
138-
| SynConst.Decimal v ->
139-
orElse (sprintf "%sM" (v.ToString()))
138+
| SynConst.Decimal v -> orElse (sprintf "%sM" (v.ToString()))
140139
| SynConst.IntPtr v -> orElse (v.ToString() + "n")
141140
| SynConst.UIntPtr v -> orElse (v.ToString() + "un")
142141
| SynConst.UserNum(v, s) ->

0 commit comments

Comments
 (0)