Skip to content

Commit 3ae6eb2

Browse files
mgalantejelbourn
authored andcommitted
docs(bidi): fix typo in overview code example (#15200)
1 parent aff565a commit 3ae6eb2

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)