Skip to content

Commit 6098891

Browse files
committed
fix(specs): Typos in API descriptions (generated)
algolia/api-clients-automation#3932 Co-authored-by: algolia-bot <[email protected]>
1 parent ac12238 commit 6098891

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

Sources/Ingestion/IngestionClient.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1853,7 +1853,7 @@ open class IngestionClient {
18531853
return body
18541854
}
18551855

1856-
// Retrieves a list of events for a task run, identified by it's ID.
1856+
// Retrieves a list of events for a task run, identified by its ID.
18571857
// Required API Key ACLs:
18581858
// - addObject
18591859
// - deleteIndex

Sources/Ingestion/Models/Transformation.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import Foundation
99
public struct Transformation: Codable, JSONEncodable {
1010
/// Universally unique identifier (UUID) of a transformation.
1111
public var transformationID: String
12-
/// The authentications associated for the current transformation.
12+
/// The authentications associated with the current transformation.
1313
public var authenticationIDs: [String]?
1414
/// The source code of the transformation.
1515
public var code: String

Sources/Ingestion/Models/TransformationCreate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public struct TransformationCreate: Codable, JSONEncodable {
1414
public var name: String
1515
/// A descriptive name for your transformation of what it does.
1616
public var description: String?
17-
/// The authentications associated for the current transformation.
17+
/// The authentications associated with the current transformation.
1818
public var authenticationIDs: [String]?
1919

2020
public init(code: String, name: String, description: String? = nil, authenticationIDs: [String]? = nil) {

Sources/Monitoring/MonitoringClient.swift

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ open class MonitoringClient {
292292
)
293293
}
294294

295-
/// - parameter clusters: (path) Subset of clusters, separated by comma.
295+
/// - parameter clusters: (path) Subset of clusters, separated by commas.
296296
/// - returns: IncidentsResponse
297297
@available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
298298
open func getClusterIncidents(
@@ -314,7 +314,7 @@ open class MonitoringClient {
314314
// Retrieves known incidents for the selected clusters.
315315
//
316316
//
317-
// - parameter clusters: (path) Subset of clusters, separated by comma.
317+
// - parameter clusters: (path) Subset of clusters, separated by commas.
318318
// - returns: RequestBuilder<IncidentsResponse>
319319

320320
open func getClusterIncidentsWithHTTPInfo(
@@ -350,7 +350,7 @@ open class MonitoringClient {
350350
)
351351
}
352352

353-
/// - parameter clusters: (path) Subset of clusters, separated by comma.
353+
/// - parameter clusters: (path) Subset of clusters, separated by commas.
354354
/// - returns: StatusResponse
355355
@available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
356356
open func getClusterStatus(clusters: String, requestOptions: RequestOptions? = nil) async throws -> StatusResponse {
@@ -369,7 +369,7 @@ open class MonitoringClient {
369369
// Retrieves the status of selected clusters.
370370
//
371371
//
372-
// - parameter clusters: (path) Subset of clusters, separated by comma.
372+
// - parameter clusters: (path) Subset of clusters, separated by commas.
373373
// - returns: RequestBuilder<StatusResponse>
374374

375375
open func getClusterStatusWithHTTPInfo(
@@ -439,7 +439,7 @@ open class MonitoringClient {
439439
)
440440
}
441441

442-
/// - parameter clusters: (path) Subset of clusters, separated by comma.
442+
/// - parameter clusters: (path) Subset of clusters, separated by commas.
443443
/// - returns: IndexingTimeResponse
444444
@available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
445445
open func getIndexingTime(
@@ -461,7 +461,7 @@ open class MonitoringClient {
461461
// Retrieves average times for indexing operations for selected clusters.
462462
//
463463
//
464-
// - parameter clusters: (path) Subset of clusters, separated by comma.
464+
// - parameter clusters: (path) Subset of clusters, separated by commas.
465465
// - returns: RequestBuilder<IndexingTimeResponse>
466466

467467
open func getIndexingTimeWithHTTPInfo(
@@ -497,7 +497,7 @@ open class MonitoringClient {
497497
)
498498
}
499499

500-
/// - parameter clusters: (path) Subset of clusters, separated by comma.
500+
/// - parameter clusters: (path) Subset of clusters, separated by commas.
501501
/// - returns: LatencyResponse
502502
@available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
503503
open func getLatency(clusters: String, requestOptions: RequestOptions? = nil) async throws -> LatencyResponse {
@@ -516,7 +516,7 @@ open class MonitoringClient {
516516
// Retrieves the average latency for search requests for selected clusters.
517517
//
518518
//
519-
// - parameter clusters: (path) Subset of clusters, separated by comma.
519+
// - parameter clusters: (path) Subset of clusters, separated by commas.
520520
// - returns: RequestBuilder<LatencyResponse>
521521

522522
open func getLatencyWithHTTPInfo(
@@ -634,7 +634,7 @@ open class MonitoringClient {
634634
)
635635
}
636636

637-
/// - parameter clusters: (path) Subset of clusters, separated by comma.
637+
/// - parameter clusters: (path) Subset of clusters, separated by commas.
638638
/// - returns: [String: [String: Bool]]
639639
@available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
640640
open func getReachability(
@@ -656,7 +656,7 @@ open class MonitoringClient {
656656
// Test whether clusters are reachable or not.
657657
//
658658
//
659-
// - parameter clusters: (path) Subset of clusters, separated by comma.
659+
// - parameter clusters: (path) Subset of clusters, separated by commas.
660660
// - returns: RequestBuilder<[String: [String: Bool]]>
661661

662662
open func getReachabilityWithHTTPInfo(

0 commit comments

Comments
 (0)