From 97cfc4de90e28bf2efec712869e9a47df8b4515b Mon Sep 17 00:00:00 2001 From: Matthias Gubler Date: Thu, 21 Mar 2024 11:17:45 -0600 Subject: [PATCH] docs(lambda-go): fix typos (#29567) ### Issue # (if applicable) ### Reason for this change Typos in doc ### Description of changes ### Description of how you validated changes ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* --- packages/@aws-cdk/aws-lambda-go-alpha/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/@aws-cdk/aws-lambda-go-alpha/README.md b/packages/@aws-cdk/aws-lambda-go-alpha/README.md index 40ffa67b0dfd7..aa812502227b3 100644 --- a/packages/@aws-cdk/aws-lambda-go-alpha/README.md +++ b/packages/@aws-cdk/aws-lambda-go-alpha/README.md @@ -29,7 +29,7 @@ Define a `GoFunction`: ```ts new go.GoFunction(this, 'handler', { - entry: 'app/cmd/api', + entry: 'lambda-app/cmd/api', }); ``` @@ -37,7 +37,7 @@ By default, if `entry` points to a directory, then the construct will assume the Let's look at an example Go project: ```bash -lamda-app +lambda-app ├── cmd │   └── api │   └── main.go @@ -244,7 +244,7 @@ all of your functions if anything changes, then `AssetHashType.SOURCE` will prob For example, if my app looked like this: ```bash -lamda-app +lambda-app ├── cmd │   └── api │   └── main.go @@ -263,7 +263,7 @@ should trigger a new deploy, I could specify `AssetHashType.SOURCE`. On the other hand, if I had a project that deployed multiple Lambda functions, for example: ```bash -lamda-app +lambda-app ├── cmd │   ├── api │   │   └── main.go