Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
timtmok committed Sep 3, 2024
1 parent e1ad439 commit 36e08bc
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ export class PlotClientInstance extends Disposable implements IPositronPlotClien
private readonly _renderUpdateEmitter = new Emitter<IRenderedPlot>();

/**
* Event that fires when the plot wants to display itself.
*/
* Event that fires when the plot wants to display itself.
*/
onDidShowPlot: Event<void>;
private readonly _didShowPlotEmitter = new Emitter<void>();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,13 +93,13 @@ export class DeferredRender {

export class PositronPlotCommProxy extends Disposable {
/**
* The currently active render request, if any.
*/
* The currently active render request, if any.
*/
private _currentRender?: DeferredRender;

/**
* The underlying comm
*/
* The underlying comm
*/
private _comm: PositronPlotComm;

/**
Expand All @@ -123,17 +123,17 @@ export class PositronPlotCommProxy extends Disposable {
private _currentIntrinsicSize?: Promise<IntrinsicSize | undefined>;

/**
* Event that fires when the plot is closed on the runtime side, typically
* because the runtime exited and doesn't preserve plot state.
*/
* Event that fires when the plot is closed on the runtime side, typically
* because the runtime exited and doesn't preserve plot state.
*/
onDidClose: Event<void>;
private readonly _closeEmitter = new Emitter<void>();

/**
* Event that fires when the plot has been updated by the runtime and
* re-rendered. Notifies clients so they can request a render update with their own
* render parameters.
*/
* Event that fires when the plot has been updated by the runtime and
* re-rendered. Notifies clients so they can request a render update with their own
* render parameters.
*/
onDidRenderUpdate: Event<IRenderedPlot>;
private readonly _renderUpdateEmitter = new Emitter<IRenderedPlot>();

Expand Down Expand Up @@ -190,8 +190,8 @@ export class PositronPlotCommProxy extends Disposable {
}

/**
* Returns a boolean indicating whether this plot has a known intrinsic size.
*/
* Returns a boolean indicating whether this plot has a known intrinsic size.
*/
get receivedIntrinsicSize(): boolean {
return this._receivedIntrinsicSize;
}
Expand Down

0 comments on commit 36e08bc

Please sign in to comment.