Skip to content

Commit 6bcf17a

Browse files
committed
Fix inconsistent code indentation
1 parent 028ec7d commit 6bcf17a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Sprint-3/1-implement-and-rewrite-tests/implement/1-get-angle-type.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ function getAngleType(angle) {
1313
}
1414

1515
if (angle === 0) {
16-
return "Acute angle";
16+
return "Acute angle";
1717
} else if (angle < 90) {
1818
return "Acute angle";
1919
} else if (angle === 90) {
@@ -31,8 +31,6 @@ function getAngleType(angle) {
3131
return "Invalid angle";
3232
}
3333

34-
35-
3634
// The line below allows us to load the getAngleType function into tests in other files.
3735
// This will be useful in the "rewrite tests with jest" step.
3836
module.exports = getAngleType;

0 commit comments

Comments
 (0)