Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
TobyShaw committed Jul 8, 2024
1 parent e3d8e61 commit 9d85c94
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,8 @@ pipeline "Release" {
let notes = getReleaseNotes currentRelease lastRelease
let noteFile = Path.GetTempFileName()
File.WriteAllText(noteFile, notes)
let files = [ yield! nugetPackages; yield! aotCompiledExecutableFiles ] |> String.concat " "
let files =
[ yield! nugetPackages; yield! aotCompiledExecutableFiles ] |> String.concat " "

// We create a draft release for minor and majors. Those that requires a manual publish.
// This is to allow us to add additional release notes when it makes sense.
Expand Down
3 changes: 1 addition & 2 deletions src/Fantomas.Core/ASTTransformer.fs
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,7 @@ let mkConstant (creationAide: CreationAide) c r : Constant =
| SynConst.UInt64 v -> orElse (v.ToString() + "uL")
| SynConst.Double v -> orElse (v.ToString("r"))
| SynConst.Single v -> orElse (v.ToString("r") + "f")
| SynConst.Decimal v ->
orElse (sprintf "%sM" (v.ToString()))
| SynConst.Decimal v -> orElse (sprintf "%sM" (v.ToString()))
| SynConst.IntPtr v -> orElse (v.ToString() + "n")
| SynConst.UIntPtr v -> orElse (v.ToString() + "un")
| SynConst.UserNum(v, s) ->
Expand Down

0 comments on commit 9d85c94

Please sign in to comment.