File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Samples/Sources/SampleDiningPhilosophers
Sources/DistributedActors Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff line change 1414
1515import 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}
You can’t perform that action at this time.
0 commit comments