From a44d3530bdb4b70d1fc875b805b54851f962db3f Mon Sep 17 00:00:00 2001 From: Gediminas Malakauskas Date: Mon, 5 May 2025 23:00:27 +0300 Subject: [PATCH] Update LambdaStartupAttribute.cs Update Summary of LambdaStartupAttribute to match docs: https://github.com/aws/aws-lambda-dotnet/blob/master/Libraries/src/Amazon.Lambda.Annotations/README.md --- .../src/Amazon.Lambda.Annotations/LambdaStartupAttribute.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/src/Amazon.Lambda.Annotations/LambdaStartupAttribute.cs b/Libraries/src/Amazon.Lambda.Annotations/LambdaStartupAttribute.cs index c426f48eb..f46a17800 100644 --- a/Libraries/src/Amazon.Lambda.Annotations/LambdaStartupAttribute.cs +++ b/Libraries/src/Amazon.Lambda.Annotations/LambdaStartupAttribute.cs @@ -7,7 +7,7 @@ namespace Amazon.Lambda.Annotations /// can be injected into Lambda functions. /// /// - /// The class should implement a ConfigureServices method that + /// The class should implement a ConfigureHostBuilder method (recommended) or ConfigureServices (legacy) that /// adds one or more services to an IServiceCollection. /// [AttributeUsage(AttributeTargets.Class)]