Skip to content

Commit

Permalink
fix: Fixed typo "Additional Deployments Options"
Browse files Browse the repository at this point in the history
  • Loading branch information
normj committed Oct 13, 2021
1 parent c52121e commit daf2912
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ Recommended Deployment Option
1: ASP.NET Core App to Amazon ECS using Fargate
ASP.NET Core applications built as a container and deployed to Amazon Elastic Container Service (ECS) with compute power managed by AWS Fargate compute engine. Recommended for applications that can be deployed as a container image. If your project does not contain a Dockerfile, one will be generated for the project.
Additional Deployments Options
Additional Deployment Options
------------------------------
2: ASP.NET Core App to AWS Elastic Beanstalk on Linux
Deploy an ASP.NET Core application to AWS Elastic Beanstalk. Recommended for applications that are not set up to be deployed as containers.
Expand Down
2 changes: 1 addition & 1 deletion src/AWS.Deploy.CLI/ConsoleUtilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public Recommendation AskToChooseRecommendation(IList<Recommendation> recommenda

if (recommendations.Count > 1)
{
_interactiveService.WriteLine("Additional Deployments Options");
_interactiveService.WriteLine("Additional Deployment Options");
_interactiveService.WriteLine("------------------------------");
for (var index = 1; index < recommendations.Count; index++)
{
Expand Down

0 comments on commit daf2912

Please sign in to comment.