Skip to content

Commit

Permalink
docs(ecs): fix typo in awsLogs (#8878)
Browse files Browse the repository at this point in the history
----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
jimmyhmiller authored Jul 8, 2020
1 parent 0717919 commit c424c57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-ecs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ const taskDefinition = new ecs.Ec2TaskDefinition(this, 'TaskDef');
taskDefinition.addContainer('TheContainer', {
image: ecs.ContainerImage.fromRegistry('example-image'),
memoryLimitMiB: 256,
logging: ecs.LogDrivers.awslogs({ streamPrefix: 'EventDemo' })
logging: ecs.LogDrivers.awsLogs({ streamPrefix: 'EventDemo' })
});
```

Expand Down

0 comments on commit c424c57

Please sign in to comment.