Skip to content

Commit b21be09

Browse files
Fixed parameter in doc comment
1 parent 1edaaa1 commit b21be09

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.swift-format

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,6 @@
5454
"UseSynthesizedInitializer" : false,
5555
"UseTripleSlashForDocumentationComments" : true,
5656
"UseWhereClausesInForLoops" : false,
57-
"ValidateDocumentationComments" : false
57+
"ValidateDocumentationComments" : true
5858
}
5959
}

Sources/SQLyra/DatabaseError.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public struct DatabaseError: Error, Equatable, Hashable {
1717
/// - Parameters:
1818
/// - code: failed result code.
1919
/// - message: A short error description.
20-
/// - reason: A complete sentence (or more) describing why the operation failed.
20+
/// - details: A complete sentence (or more) describing why the operation failed.
2121
public init(code: Int32, message: String, details: String) {
2222
self.code = code
2323
self.message = message

0 commit comments

Comments
 (0)