Skip to content

Commit

Permalink
[added] private annotation to _connect
Browse files Browse the repository at this point in the history
Summary: Not sure how long this has been in my local copy, but it should be upstream.

Reviewers: O2 Material Motion, O3 Material JavaScript platform reviewers, #material_motion

Tags: #material_motion

Differential Revision: http://codereview.cc/D3472
  • Loading branch information
appsforartists committed Nov 27, 2018
1 parent e41e7b6 commit 246e4d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/IndefiniteObservable.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { Connect, Observable, ObserverOrNext, Subscription } from './types';
* or `error` on the provided observer.
*/
export default class IndefiniteObservable<T> implements Observable<T> {
_connect: Connect<T>;
private _connect;
/**
* The provided function should receive an observer and connect that
* observer's `next` method to an event source (for instance,
Expand Down
2 changes: 1 addition & 1 deletion src/IndefiniteObservable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import {
* or `error` on the provided observer.
*/
export default class IndefiniteObservable<T> implements Observable<T> {
_connect: Connect<T>;
private _connect: Connect<T>;

/**
* The provided function should receive an observer and connect that
Expand Down

0 comments on commit 246e4d5

Please sign in to comment.