Skip to content

Commit 11929c6

Browse files
committed
Update doc
1 parent 4234522 commit 11929c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ kotlin {
7575

7676
There are two types of lambda functions:
7777

78-
###Buffered
78+
### Buffered
7979
Buffered Lambda function collects all the data it needs to return as a response before sending
8080
it back. This is a default behavior of Lambda function. Response payload max size: 6 MB.
8181

@@ -96,7 +96,7 @@ class HelloWorldLambdaHandler : LambdaBufferedHandler<APIGatewayV2Request, APIGa
9696
}
9797
```
9898

99-
###Streaming
99+
### Streaming
100100
Streaming function, on the other hand, sends back data as soon as it's available, rather than
101101
waiting for all the data to be ready. It processes and returns the response in chunks, piece by
102102
piece, which can be useful when you want to start delivering results right away, especially for

0 commit comments

Comments
 (0)