Skip to content

Commit 484f470

Browse files
Alešjelbourn
authored andcommitted
chore: fix typos in comments in GlobalPositionStrategy (#1228)
usee -> use
1 parent 833368f commit 484f470

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/core/overlay/position/global-position-strategy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ export class GlobalPositionStrategy implements PositionStrategy {
1919
/** Array of individual applications of translateY(). Currently only for centering. */
2020
private _translateY: string[] = [];
2121

22-
/** Sets the element to usee CSS position: fixed */
22+
/** Sets the element to use CSS position: fixed */
2323
fixed() {
2424
this._cssPosition = 'fixed';
2525
return this;
2626
}
2727

28-
/** Sets the element to usee CSS position: absolute. This is the default. */
28+
/** Sets the element to use CSS position: absolute. This is the default. */
2929
absolute() {
3030
this._cssPosition = 'absolute';
3131
return this;

0 commit comments

Comments
 (0)