From 2758250833c81207c76630e5d0d998ad8354f0f2 Mon Sep 17 00:00:00 2001 From: Victor Woeltjen Date: Thu, 10 Sep 2015 11:27:50 -0700 Subject: [PATCH] [Time Conductor] Fix JSDoc Fix copy-paste error. WTD-1515 --- platform/features/conductor/src/TimeConductor.js | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/platform/features/conductor/src/TimeConductor.js b/platform/features/conductor/src/TimeConductor.js index ec4200ed6e..fcf8dbae04 100644 --- a/platform/features/conductor/src/TimeConductor.js +++ b/platform/features/conductor/src/TimeConductor.js @@ -33,21 +33,12 @@ define( 'use strict'; /** - * Wrapper for the `telemetry` capability which adds start/end - * 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. + * Tracks the current state of the time conductor. * * @memberof platform/features/conductor * @constructor - * @augments {platform/telemetry.TelemetryCapability} - * @param {platform/features/conductor.TimeConductor} timeConductor - * the time conductor which controls these queries - * @param {platform/telemetry.TelemetryCapability} telemetryCapability - * the wrapped capability + * @param {number} start the initial start time + * @param {number} end the initial end time */ function TimeConductor(start, end) { this.inner = { start: start, end: end };