Skip to content

Commit 86e6ac4

Browse files
committed
fixing formatting
1 parent 250d559 commit 86e6ac4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Sources/ServiceLifecycle/ServiceGroupConfiguration.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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 {

0 commit comments

Comments
 (0)