diff --git a/src/utils/CircularList.ts b/src/utils/CircularList.ts index 8835acb01c..b72c667fe1 100644 --- a/src/utils/CircularList.ts +++ b/src/utils/CircularList.ts @@ -1,11 +1,8 @@ -/** - * xterm.js: xterm, in the browser - * Copyright (c) 2016, SourceLair Private Company (MIT License) - */ - /** * Represents a circular list; a list with a maximum size that wraps around when push is called, * overriding values at the start of the list. + * @module xterm/utils/CircularList + * @license MIT */ export class CircularList { private _array: T[];