Skip to content

Commit

Permalink
refactor(cdk/drag-drop): change misleading comment (#17949)
Browse files Browse the repository at this point in the history
Changes misleading comment about item that was dragged into container.
  • Loading branch information
michalkoziara authored and mmalerba committed Dec 13, 2019
1 parent e48b960 commit 11116d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cdk/drag-drop/drag-events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export interface CdkDragEnd<T = any> {
export interface CdkDragEnter<T = any, I = T> {
/** Container into which the user has moved the item. */
container: CdkDropList<T>;
/** Item that was removed from the container. */
/** Item that was moved into the container. */
item: CdkDrag<I>;
/** Index at which the item has entered the container. */
currentIndex: number;
Expand Down

0 comments on commit 11116d5

Please sign in to comment.