Skip to content

Commit 49be843

Browse files
committed
fix(docs): typo
1 parent 43f4ca8 commit 49be843

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: examples/validation/src/getting_started_validator_decorator_function.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def lambda_handler(event, context: LambdaContext) -> dict:
3939
):
4040
user_details = User(ip=event.get("ip"), permissions=["read", "write"]).__dict__
4141

42-
# the body must be a object because must match OUTPUT schema, otherwise it fails
42+
# the body must be an object because must match OUTPUT schema, otherwise it fails
4343
return {"body": user_details or None, "statusCode": 200 if user_details else 204}
4444
except Exception as e:
4545
raise UserPermissionsError(str(e))

0 commit comments

Comments
 (0)