This PR corrects misspellings identified by the [check-spelling
action](https://github.com/marketplace/actions/check-spelling)

The misspellings have been reported at
https://github.com/jsoref/container/actions/runs/15662939575/attempts/1
The action reports that the changes in this PR would make it happy:
https://github.com/jsoref/container/actions/runs/15662939742/attempts/1#summary-44123289718

---------

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref
2025-06-16 10:49:03 -07:00
committed by GitHub
parent 4d6f7037f3
commit 4a4ad40d74
8 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -169,7 +169,7 @@ extension PluginLoader {
instanceId: String? = nil
) throws {
// We only care about loading plugins that have a service
// to expose, otherwise they may just be CLI commands.
// to expose; otherwise, they may just be CLI commands.
guard let serviceConfig = plugin.config.servicesConfig else {
return
}
@@ -201,7 +201,7 @@ extension PluginLoader {
public func deregisterWithLaunchd(plugin: Plugin, instanceId: String? = nil) throws {
// We only care about loading plugins that have a service
// to expose, otherwise they may just be CLI commands.
// to expose; otherwise, they may just be CLI commands.
guard plugin.config.servicesConfig != nil else {
return
}