@@ -21,7 +21,7 @@ import NIOFoundationCompat
2121
2222// MARK: - LambdaHandler Codable support
2323
24- /// Implementation of a `ByteBuffer` to `Event` decoding.
24+ /// Implementation of `ByteBuffer` to `Event` decoding.
2525@available ( macOS 12 , iOS 15 , tvOS 15 , watchOS 8 , * )
2626extension LambdaHandler where Event: Decodable {
2727 @inlinable
@@ -30,7 +30,7 @@ extension LambdaHandler where Event: Decodable {
3030 }
3131}
3232
33- /// Implementation of `Output` to `ByteBuffer` encoding.
33+ /// Implementation of `Output` to `ByteBuffer` encoding.
3434@available ( macOS 12 , iOS 15 , tvOS 15 , watchOS 8 , * )
3535extension LambdaHandler where Output: Encodable {
3636 @inlinable
@@ -40,7 +40,7 @@ extension LambdaHandler where Output: Encodable {
4040}
4141
4242/// Default `ByteBuffer` to `Event` decoder using Foundation's `JSONDecoder`.
43- /// Advanced users that want to inject their own codec can do it by overriding these functions.
43+ /// Advanced users who want to inject their own codec can do it by overriding these functions.
4444@available ( macOS 12 , iOS 15 , tvOS 15 , watchOS 8 , * )
4545extension LambdaHandler where Event: Decodable {
4646 public var decoder : LambdaCodableDecoder {
@@ -49,7 +49,7 @@ extension LambdaHandler where Event: Decodable {
4949}
5050
5151/// Default `Output` to `ByteBuffer` encoder using Foundation's `JSONEncoder`.
52- /// Advanced users that want to inject their own codec can do it by overriding these functions.
52+ /// Advanced users who want to inject their own codec can do it by overriding these functions.
5353@available ( macOS 12 , iOS 15 , tvOS 15 , watchOS 8 , * )
5454extension LambdaHandler where Output: Encodable {
5555 public var encoder : LambdaCodableEncoder {
@@ -59,15 +59,15 @@ extension LambdaHandler where Output: Encodable {
5959
6060// MARK: - EventLoopLambdaHandler Codable support
6161
62- /// Implementation of a `ByteBuffer` to `Event` decoding.
62+ /// Implementation of `ByteBuffer` to `Event` decoding.
6363extension EventLoopLambdaHandler where Event: Decodable {
6464 @inlinable
6565 public func decode( buffer: ByteBuffer ) throws -> Event {
6666 try self . decoder. decode ( Event . self, from: buffer)
6767 }
6868}
6969
70- /// Implementation of `Output` to `ByteBuffer` encoding.
70+ /// Implementation of `Output` to `ByteBuffer` encoding.
7171extension EventLoopLambdaHandler where Output: Encodable {
7272 @inlinable
7373 public func encode( value: Output , into buffer: inout ByteBuffer ) throws {
0 commit comments