Skip to content

Commit 32aafcd

Browse files
vkuttypCopilot
andcommitted
docs: fix .spi.yml and DocC warning to unblock SPI documentation build
- Remove unsupported platform/swift_version fields from .spi.yml (match apple/swift-nio's minimal format — just documentation_targets) - Fix broken DocC symbol link: columnNotFound -> columnNotFound(_:) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 35b363c commit 32aafcd

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.spi.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,3 @@ builder:
77
- CosmoPostgres
88
- CosmoMySQL
99
- CosmoSQLite
10-
swift_version: "6.0"
11-
platform: macosSpm

Sources/CosmoSQLCore/SQLRow.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public struct SQLRow: Sendable {
3737
// MARK: - Helpers
3838

3939
public extension SQLValue {
40-
/// Throws ``SQLError/columnNotFound`` when the value is `.null` and was
40+
/// Throws ``SQLError/columnNotFound(_:)`` when the value is `.null` and was
4141
/// produced by a missing column lookup.
4242
func require(column: String = "<unknown>") throws -> SQLValue {
4343
if case .null = self {

0 commit comments

Comments
 (0)