Skip to content

Commit 6de74e2

Browse files
committed
Updated indentation on const
1 parent 73e50fa commit 6de74e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lesson_06/expression/src/expression_calculator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ export class ExpressionCalculator {
22
/** Returns a calculation involving a, b, c, d, and e */
33
calculate(a: number, b: number, c: number, d: number, e: number): number {
44
// Implement your code here to return the correct value.
5-
const exponent = this.pow(d, e);
5+
const exponent = this.pow(d, e);
66
const division = this.divide(a, b);
77
const multiplication = this.multiply(c, exponent);
88
const result = this.add(division, multiplication);

0 commit comments

Comments
 (0)