diff --git a/Sources/AmiiboService/Public/Models/Amiibo.swift b/Sources/AmiiboService/Public/Models/Amiibo.swift index 253628f..c50de40 100644 --- a/Sources/AmiiboService/Public/Models/Amiibo.swift +++ b/Sources/AmiiboService/Public/Models/Amiibo.swift @@ -14,7 +14,7 @@ import Foundation -/// A model that represents an amiibo item. +/// A model that represents an amiibo. public struct Amiibo: Sendable { // MARK: Properties diff --git a/Sources/AmiiboService/Public/Models/Amiibo/Amiibo+Game.swift b/Sources/AmiiboService/Public/Models/Amiibo/Amiibo+Game.swift index d1e0e16..8d12f53 100644 --- a/Sources/AmiiboService/Public/Models/Amiibo/Amiibo+Game.swift +++ b/Sources/AmiiboService/Public/Models/Amiibo/Amiibo+Game.swift @@ -13,7 +13,7 @@ // ===----------------------------------------------------------------------=== extension Amiibo { - /// A model that represents a game related to an amiibo item. + /// A model that represents a game related to an amiibo. public struct Game: Sendable { // MARK: Properties diff --git a/Sources/AmiiboService/Public/Models/Amiibo/Amiibo+Platform.swift b/Sources/AmiiboService/Public/Models/Amiibo/Amiibo+Platform.swift index cac8d42..e5959e8 100644 --- a/Sources/AmiiboService/Public/Models/Amiibo/Amiibo+Platform.swift +++ b/Sources/AmiiboService/Public/Models/Amiibo/Amiibo+Platform.swift @@ -13,34 +13,34 @@ // ===----------------------------------------------------------------------=== extension Amiibo { - /// A model that represents a collection of `WiiU`, `3DS`, and `Switch` games related to an amiibo item. + /// A model that represents a collection of `Switch`, `Switch 2`, `3DS`, and `WiiU` games related to an amiibo. public struct Platform: Sendable { // MARK: Properties - /// A list of `Switch` games related to an amiibo item. + /// A list of `Switch` games related to an amiibo. public let `switch`: [Game] /// A list of `Switch 2` games related to an amiibo. public let switch2: [Game] - /// A list of `3DS` games related to an amiibo item. + /// A list of `3DS` games related to an amiibo. public let threeDS: [Game] - /// A list of `WiiU` games related to an amiibo item. + /// A list of `WiiU` games related to an amiibo. public let wiiU: [Game] - // MARK: Initialisers + // MARK: Initializers /// Initializes this model. /// /// > important: In case no data is provided, then an instance of this model is not created. /// /// - Parameters: - /// - switch: A list of `Switch` games related to an amiibo item, if any. - /// - threeDS: A list of `3DS` games related to an amiibo item, if any. - /// - wiiU: A list of `WiiU` games related to an amiibo item, if any. + /// - switch: A list of `Switch` games related to an amiibo, if any. /// - switch2: A list of `Switch 2` games related to an amiibo, if any. + /// - threeDS: A list of `3DS` games related to an amiibo, if any. + /// - wiiU: A list of `WiiU` games related to an amiibo, if any. init?( _ `switch`: [Components.Schemas.AmiiboGame]?, _ switch2: [Components.Schemas.AmiiboGame]?, diff --git a/Sources/AmiiboService/Public/Models/Amiibo/Amiibo+Release.swift b/Sources/AmiiboService/Public/Models/Amiibo/Amiibo+Release.swift index 7c172b4..87bd2ee 100644 --- a/Sources/AmiiboService/Public/Models/Amiibo/Amiibo+Release.swift +++ b/Sources/AmiiboService/Public/Models/Amiibo/Amiibo+Release.swift @@ -15,7 +15,7 @@ import Foundation extension Amiibo { - /// A model that represents a collection of release dates related to an amiibo item. + /// A model that represents a collection of release dates related to an amiibo. public struct Release: Sendable { // MARK: Properties diff --git a/Sources/AmiiboService/Public/Models/Amiibo/Amiibo+Usage.swift b/Sources/AmiiboService/Public/Models/Amiibo/Amiibo+Usage.swift index 35939c9..5b8f27e 100644 --- a/Sources/AmiiboService/Public/Models/Amiibo/Amiibo+Usage.swift +++ b/Sources/AmiiboService/Public/Models/Amiibo/Amiibo+Usage.swift @@ -13,15 +13,15 @@ // ===----------------------------------------------------------------------=== extension Amiibo { - /// A model that represents the usage of an amiibo item within a certain game. + /// A model that represents the usage of an amiibo within a certain game. public struct Usage: Sendable { // MARK: Properties - /// An explanation of how to use an amiibo item. + /// An explanation of how to use an amiibo. public let explanation: String - /// A flag that indicates whether an amiibo item can save game data in it. + /// A flag that indicates whether an amiibo can save game data in it. public let isWriteable: Bool // MARK: Initializers