[Time Conductor] Fix JSDoc

Fix copy-paste error. WTD-1515
This commit is contained in:
Victor Woeltjen
2015-09-10 11:27:50 -07:00
parent 7d20351a6a
commit 2758250833

View File

@@ -33,21 +33,12 @@ define(
'use strict'; 'use strict';
/** /**
* Wrapper for the `telemetry` capability which adds start/end * Tracks the current state of the time conductor.
* times to all requests based on the current state of a time
* conductor.
*
* Note that both start and end times are in units which may
* vary depending on the domains of telemetry being used. Most
* commonly, these are UNIX timestamps in milliseconds.
* *
* @memberof platform/features/conductor * @memberof platform/features/conductor
* @constructor * @constructor
* @augments {platform/telemetry.TelemetryCapability} * @param {number} start the initial start time
* @param {platform/features/conductor.TimeConductor} timeConductor * @param {number} end the initial end time
* the time conductor which controls these queries
* @param {platform/telemetry.TelemetryCapability} telemetryCapability
* the wrapped capability
*/ */
function TimeConductor(start, end) { function TimeConductor(start, end) {
this.inner = { start: start, end: end }; this.inner = { start: start, end: end };