Skip to content

Commit 0de6e24

Browse files
committed
Fix "expression" typos
1 parent 9e6e3bf commit 0de6e24

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

pkg/sass-parser/lib/src/configured-variable.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ export class ConfiguredVariable extends Node {
102102
*/
103103
declare name: string;
104104

105-
/** The expresison whose value the variable is assigned. */
105+
/** The expression whose value the variable is assigned. */
106106
get expression(): Expression {
107107
return this._expression!;
108108
}

pkg/sass-parser/lib/src/statement/debug-rule.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export class DebugRule
6666
this.debugExpression = {text: value?.toString() ?? ''};
6767
}
6868

69-
/** The expresison whose value is emitted when the debug rule is executed. */
69+
/** The expression whose value is emitted when the debug rule is executed. */
7070
get debugExpression(): Expression {
7171
return this._debugExpression!;
7272
}

pkg/sass-parser/lib/src/statement/each-rule.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ export class EachRule
9595
throw new Error("EachRule.params can't be overwritten.");
9696
}
9797

98-
/** The expresison whose value is iterated over. */
98+
/** The expression whose value is iterated over. */
9999
get eachExpression(): Expression {
100100
return this._eachExpression!;
101101
}

pkg/sass-parser/lib/src/statement/error-rule.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export class ErrorRule
6666
this.errorExpression = {text: value?.toString() ?? ''};
6767
}
6868

69-
/** The expresison whose value is thrown when the error rule is executed. */
69+
/** The expression whose value is thrown when the error rule is executed. */
7070
get errorExpression(): Expression {
7171
return this._errorExpression!;
7272
}

pkg/sass-parser/lib/src/statement/for-rule.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ export class ForRule
102102
throw new Error("ForRule.params can't be overwritten.");
103103
}
104104

105-
/** The expresison whose value is the starting point of the iteration. */
105+
/** The expression whose value is the starting point of the iteration. */
106106
get fromExpression(): Expression {
107107
return this._fromExpression!;
108108
}
@@ -116,7 +116,7 @@ export class ForRule
116116
}
117117
private declare _fromExpression?: Expression;
118118

119-
/** The expresison whose value is the ending point of the iteration. */
119+
/** The expression whose value is the ending point of the iteration. */
120120
get toExpression(): Expression {
121121
return this._toExpression!;
122122
}

pkg/sass-parser/lib/src/statement/return-rule.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export class ReturnRule
6666
this.returnExpression = {text: value?.toString() ?? ''};
6767
}
6868

69-
/** The expresison whose value is emitted when the return rule is executed. */
69+
/** The expression whose value is emitted when the return rule is executed. */
7070
get returnExpression(): Expression {
7171
return this._returnExpression!;
7272
}

pkg/sass-parser/lib/src/statement/warn-rule.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export class WarnRule
6666
this.warnExpression = {text: value?.toString() ?? ''};
6767
}
6868

69-
/** The expresison whose value is emitted when the warn rule is executed. */
69+
/** The expression whose value is emitted when the warn rule is executed. */
7070
get warnExpression(): Expression {
7171
return this._warnExpression!;
7272
}

pkg/sass-parser/lib/src/statement/while-rule.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export class WhileRule
7171
throw new Error("WhileRule.params can't be overwritten.");
7272
}
7373

74-
/** The expresison whose value is emitted when the while rule is executed. */
74+
/** The expression whose value is emitted when the while rule is executed. */
7575
get whileCondition(): Expression {
7676
return this._whileCondition!;
7777
}

0 commit comments

Comments
 (0)