Skip to content

Commit

Permalink
Fix Swiftlint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
groue committed Apr 21, 2024
1 parent 639fa91 commit 53c40fd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion GRDB/Record/FetchableRecord+Decodable.swift
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,9 @@ private struct _RowDecoder<R: FetchableRecord>: Decoder {
KeyedDecodingContainer<NestedKey>.self,
DecodingError.Context(
codingPath: codingPath,
debugDescription: "not implemented: building a nested JSON container for the column '\(column)'"))
debugDescription: """
not implemented: building a nested JSON container for the column '\(column)'
"""))
}

// Scope?
Expand Down

0 comments on commit 53c40fd

Please sign in to comment.