From bc716504983c7059c12a9244d53b48b675d95029 Mon Sep 17 00:00:00 2001 From: Miguel Galante Date: Fri, 15 Feb 2019 12:40:08 -0300 Subject: [PATCH] Fix example of bidi --- src/cdk/bidi/bidi.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cdk/bidi/bidi.md b/src/cdk/bidi/bidi.md index dddc26874980..272c92e1b466 100644 --- a/src/cdk/bidi/bidi.md +++ b/src/cdk/bidi/bidi.md @@ -20,7 +20,7 @@ export class MyWidget implements OnDestroy { constructor(dir: Directionality) { this.isRtl = dir.value === 'rtl'; - _dirChangeSubscription = dir.change.subscribe(() => { + this._dirChangeSubscription = dir.change.subscribe(() => { this.flipDirection(); }); }