We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19fe6af commit efe370bCopy full SHA for efe370b
Sources/Alchemy/Utilities/Service.swift
@@ -37,14 +37,14 @@ extension Service {
37
}
38
39
public static func config(default configuration: Self) {
40
- config(nil, configuration)
+ _config(nil, configuration)
41
42
43
public static func config(_ name: String, _ configuration: Self) {
44
- config(name, configuration)
+ _config(name, configuration)
45
46
47
- private static func config(_ name: String? = nil, _ configuration: Self) {
+ private static func _config(_ name: String? = nil, _ configuration: Self) {
48
let label: String
49
if let name = name {
50
label = "\(Alchemy.name(of: Self.self)):\(name)"
0 commit comments