Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Sources/SwiftkubeModel.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ import Foundation

/// Represents SwiftkubeModel errors.
public enum SwiftkubeModelError: Error {
/// Thrown when dealing with an unknown Kubernetes object, i.e. when a correspondinf `GroupVersionKind` cann't be determined.
/// Thrown when dealing with an unknown Kubernetes object, i.e. when a corresponding `GroupVersionKind` cannot be determined.
case unknownAPIObject(String)
/// Thrown on decoding errors.
case decodingError(String)
/// Thrown when a Kubernetes object is missing a field that is requied to perform an operation
/// Thrown when a Kubernetes object is missing a field that is required to perform an operation.
case fieldDoesntExist(String)
}