Skip to content

Commit

Permalink
Improve header comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyriar committed Dec 27, 2016
1 parent d7f2ec8 commit 50cfe2b
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/utils/CircularList.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
/**
* xterm.js: xterm, in the browser
* Copyright (c) 2016, SourceLair Private Company <www.sourcelair.com> (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<T> {
private _array: T[];
Expand Down

0 comments on commit 50cfe2b

Please sign in to comment.