Skip to content

Commit fee764d

Browse files
committed
formatting
1 parent 51a2a1d commit fee764d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Samples/Sources/SampleDiningPhilosophers/SamplePrettyLogHandler.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,8 @@ struct SamplePrettyLogHandler: LogHandler {
143143
}
144144
}
145145

146-
public extension DistributedActor where Self: CustomStringConvertible {
147-
nonisolated var description: String {
146+
extension DistributedActor where Self: CustomStringConvertible {
147+
public nonisolated var description: String {
148148
"\(Self.self)(\(self.id))"
149149
}
150150
}

Sources/DistributedActors/DistributedActor+Extensions.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515
import Distributed
1616

17-
public extension DistributedActor where Self: CustomStringConvertible {
18-
nonisolated var description: String {
17+
extension DistributedActor where Self: CustomStringConvertible {
18+
public nonisolated var description: String {
1919
"\(Self.self)(\(id))"
2020
}
2121
}

0 commit comments

Comments
 (0)