Skip to content

Commit

Permalink
swift format
Browse files Browse the repository at this point in the history
  • Loading branch information
sebsto committed Oct 8, 2024
1 parent 0ec224f commit 6342eef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Sources/AWSLambdaRuntime/Lambda+Codable.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ public struct LambdaJSONEventDecoder: LambdaEventDecoder {
}

@inlinable
public func decode<Event>(_ type: Event.Type, from buffer: NIOCore.ByteBuffer) throws -> Event where Event : Decodable {
public func decode<Event>(_ type: Event.Type, from buffer: NIOCore.ByteBuffer) throws -> Event
where Event : Decodable {
try buffer.getJSONDecodable(
Event.self,
decoder: self.jsonDecoder,
Expand Down

0 comments on commit 6342eef

Please sign in to comment.