File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -47,10 +47,10 @@ public struct ServiceGroupConfiguration: Sendable {
4747 /// Creates a new logging configuration.
4848 public init ( ) { }
4949 }
50-
50+
5151 /// A service configuration.
5252 public struct ServiceConfiguration : Sendable {
53-
53+
5454 /// The behavior to follow when the service finishes running.
5555 ///
5656 /// This describes what the service lifecycle code does when a service's run method returns or throws.
@@ -62,14 +62,14 @@ public struct ServiceGroupConfiguration: Sendable {
6262 }
6363
6464 internal let behavior : _TerminationBehavior
65-
65+
6666 /// Cancel the service group.
6767 public static let cancelGroup = Self ( behavior: . cancelGroup)
6868 /// Gracefully shut down the service group.
6969 public static let gracefullyShutdownGroup = Self ( behavior: . gracefullyShutdownGroup)
7070 /// Ignore the completion of the service.
7171 public static let ignore = Self ( behavior: . ignore)
72-
72+
7373 /// A string representation of the behavior when a service finishes running.
7474 public var description : String {
7575 switch self . behavior {
You can’t perform that action at this time.
0 commit comments