From 50cfe2b21a172706ea37b55176f017fcf9c3f97b Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Tue, 27 Dec 2016 13:40:49 -0800 Subject: [PATCH] Improve header comment --- src/utils/CircularList.ts | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/utils/CircularList.ts b/src/utils/CircularList.ts index 8835acb0..b72c667f 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[];