From 3239f27a1a77b601116c6639d321c78348f8bd5a Mon Sep 17 00:00:00 2001 From: senmm Date: Fri, 14 Oct 2022 06:34:25 +0000 Subject: [PATCH] fix: typo of idempotency docs. --- docs/utilities/idempotency.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/utilities/idempotency.md b/docs/utilities/idempotency.md index 90ba916e3d7..4893bb76ab0 100644 --- a/docs/utilities/idempotency.md +++ b/docs/utilities/idempotency.md @@ -842,7 +842,7 @@ This utility provides an abstract base class (ABC), so that you can implement yo You can inherit from the `BasePersistenceLayer` class and implement the abstract methods `_get_record`, `_put_record`, `_update_record` and `_delete_record`. -```python hl_lines="8-13 57 65 74 96 124" title="Excerpt DynamoDB Persisntence Layer implementation for reference" +```python hl_lines="8-13 57 65 74 96 124" title="Excerpt DynamoDB Persistence Layer implementation for reference" import datetime import logging from typing import Any, Dict, Optional