Skip to content
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 packages/aws-cdk-lib/aws-events-targets/lib/log-group.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export interface LogGroupTargetInputOptions {
*/
export abstract class LogGroupTargetInput {
/**
* Pass a JSON object to the the log group event target
* Pass a JSON object to the log group event target
*
* May contain strings returned by `EventField.from()` to substitute in parts of the
* matched event.
Expand Down
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/aws-events/lib/rule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ export class Rule extends Resource implements IRule {
// and trigger on it there (there will be issues with construct references, for example). Especially
// in the case of scheduled events, we will just trigger both rules in parallel in both environments.
//
// A better solution would be to have the source rule add a unique token to the the event,
// A better solution would be to have the source rule add a unique token to the event,
// and have the mirror rule trigger on that token only (thereby properly separating triggering, which
// happens in the source env; and activating, which happens in the target env).
//
Expand Down
Loading