Skip to content

Commit

Permalink
style: add trailing commas (SE-0439)
Browse files Browse the repository at this point in the history
  • Loading branch information
kkebo committed Nov 6, 2024
1 parent 9eb0f00 commit 97ee863
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ let package = Package(
],
swiftSettings: swiftSettings + [
.define("RASPI4")
]
],
),
.target(name: "MailboxMessage"),
.target(name: "Support"),
],
swiftLanguageModes: [.v6]
swiftLanguageModes: [.v6],
)
2 changes: 1 addition & 1 deletion Sources/Kernel/Framebuffer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ struct Framebuffer: ~Copyable {
width: UInt32,
height: UInt32,
depth: UInt32,
pixelOrder: PixelOrder
pixelOrder: PixelOrder,
) {
mbox.0 = 35 * 4
mbox.1 = 0 // request
Expand Down

0 comments on commit 97ee863

Please sign in to comment.