Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in Lambda docstring #8333

Merged
merged 1 commit into from
Nov 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/docs/services/lambda.rst
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ lambda

Invoking a Function with PackageType=Image is not yet supported.

Invoking a Funcation against Lambda without docker now supports customised responses, the default being `Simple Lambda happy path OK`.
Invoking a Function against Lambda without docker now supports customised responses, the default being `Simple Lambda happy path OK`.
You can use a dedicated API to override this, by configuring a queue of expected results.

A request to `invoke` will take the first result from that queue.
Expand Down
2 changes: 1 addition & 1 deletion moto/awslambda/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -2389,7 +2389,7 @@ def invoke(
"""
Invoking a Function with PackageType=Image is not yet supported.

Invoking a Funcation against Lambda without docker now supports customised responses, the default being `Simple Lambda happy path OK`.
Invoking a Function against Lambda without docker now supports customised responses, the default being `Simple Lambda happy path OK`.
You can use a dedicated API to override this, by configuring a queue of expected results.

A request to `invoke` will take the first result from that queue.
Expand Down
Loading