Skip to content

Commit bd1dbf0

Browse files
committed
docs(parser): fix table and heading syntax
1 parent 222bc03 commit bd1dbf0

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

docs/utilities/parser.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ Here's an example of parsing a model found in an event coming from EventBridge,
291291
4. Parser then parsed the `detail` key using `UserModel`
292292

293293

294-
### built-in envelopes
294+
### Built-in envelopes
295295

296296
Parser comes with the following built-in envelopes, where `Model` in the return section is your given model.
297297

@@ -304,8 +304,9 @@ Parser comes with the following built-in envelopes, where `Model` in the return
304304
| **KinesisDataStreamEnvelope** | 1. Parses data using `KinesisDataStreamModel` which will base64 decode it. <br/> 2. Parses records in in `Records` key using your model and returns them in a list. | `List[Model]` |
305305
| **SnsEnvelope** | 1. Parses data using `SnsModel`. <br/> 2. Parses records in `body` key using your model and return them in a list. | `List[Model]` |
306306
| **SnsSqsEnvelope** | 1. Parses data using `SqsModel`. <br/> 2. Parses SNS records in `body` key using `SnsNotificationModel`. <br/> 3. Parses data in `Message` key using your model and return them in a list. | `List[Model]` |
307-
| **ApiGatewayEnvelope** 1. Parses data using `APIGatewayProxyEventModel`. <br/> 2. Parses `body` key using your model and returns it. | `Model` |
308-
### bringing your own envelope
307+
| **ApiGatewayEnvelope** | 1. Parses data using `APIGatewayProxyEventModel`. <br/> 2. Parses `body` key using your model and returns it. | `Model` |
308+
309+
### Bringing your own envelope
309310

310311
You can create your own Envelope model and logic by inheriting from `BaseEnvelope`, and implementing the `parse` method.
311312

0 commit comments

Comments
 (0)