Skip to content

Commit 8202ae1

Browse files
committed
[Make] Sync *.swift
1 parent d1732b0 commit 8202ae1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Sources/licenses/Types.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -450,11 +450,11 @@ public enum Components {
450450
}
451451
/// Types generated from the `#/components/parameters` section of the OpenAPI document.
452452
public enum Parameters {
453-
/// The number of results per page (max 100).
453+
/// The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
454454
///
455455
/// - Remark: Generated from `#/components/parameters/per-page`.
456456
public typealias per_hyphen_page = Swift.Int
457-
/// Page number of the results to fetch.
457+
/// The page number of the results to fetch. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
458458
///
459459
/// - Remark: Generated from `#/components/parameters/page`.
460460
public typealias page = Swift.Int
@@ -551,20 +551,20 @@ public enum Operations {
551551
public struct Query: Sendable, Hashable {
552552
/// - Remark: Generated from `#/paths/licenses/GET/query/featured`.
553553
public var featured: Swift.Bool?
554-
/// The number of results per page (max 100).
554+
/// The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
555555
///
556556
/// - Remark: Generated from `#/paths/licenses/GET/query/per_page`.
557557
public var per_page: Components.Parameters.per_hyphen_page?
558-
/// Page number of the results to fetch.
558+
/// The page number of the results to fetch. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
559559
///
560560
/// - Remark: Generated from `#/paths/licenses/GET/query/page`.
561561
public var page: Components.Parameters.page?
562562
/// Creates a new `Query`.
563563
///
564564
/// - Parameters:
565565
/// - featured:
566-
/// - per_page: The number of results per page (max 100).
567-
/// - page: Page number of the results to fetch.
566+
/// - per_page: The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
567+
/// - page: The page number of the results to fetch. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
568568
public init(
569569
featured: Swift.Bool? = nil,
570570
per_page: Components.Parameters.per_hyphen_page? = nil,

0 commit comments

Comments
 (0)