Skip to content

Commit 8e1e99b

Browse files
author
Miguel Galante
committed
Fix example of bidi
1 parent aff565a commit 8e1e99b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cdk/bidi/bidi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export class MyWidget implements OnDestroy {
2020
constructor(dir: Directionality) {
2121
this.isRtl = dir.value === 'rtl';
2222

23-
_dirChangeSubscription = dir.change.subscribe(() => {
23+
this._dirChangeSubscription = dir.change.subscribe(() => {
2424
this.flipDirection();
2525
});
2626
}

0 commit comments

Comments
 (0)