Skip to content

Commit 5a358fa

Browse files
committed
formatting
1 parent 1608e7d commit 5a358fa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Sources/IORing/Submission.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class Submission<T: Sendable>: CustomStringConvertible {
3636
private let sqe: UnsafeMutablePointer<io_uring_sqe>
3737
private var cancellationToken: UnsafeMutableRawPointer?
3838

39-
public nonisolated var description: String {
39+
nonisolated var description: String {
4040
"(\(type(of: self)))(fd: \(fd.fileDescriptor), opcode: \(opcode), handler: \(String(describing: handler)))"
4141
}
4242

@@ -537,13 +537,13 @@ struct AsyncCancelFlags: OptionSet {
537537
}
538538

539539
extension Submission: Equatable {
540-
public nonisolated static func == (lhs: Submission, rhs: Submission) -> Bool {
540+
nonisolated static func == (lhs: Submission, rhs: Submission) -> Bool {
541541
lhs === rhs
542542
}
543543
}
544544

545545
extension Submission: Hashable {
546-
public nonisolated func hash(into hasher: inout Hasher) {
546+
nonisolated func hash(into hasher: inout Hasher) {
547547
ObjectIdentifier(self).hash(into: &hasher)
548548
}
549549
}

0 commit comments

Comments
 (0)