Skip to content

Commit 34cd9f5

Browse files
committed
chore: format Sprint-1 files with Prettier
1 parent df747db commit 34cd9f5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Sprint-1/1-key-exercises/1-count.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ count = count + 1;
66
// Describe what line 3 is doing, in particular focus on what = is doing
77

88
// Line 3 reassigns the count variable by evaluating the expression on the right hand side of the assignment.
9-
// The right hand side (count + 1) is evaluated first, then the = operator assigns that value to count.
9+
// The right hand side (count + 1) is evaluated first, then the = operator assigns that value to count.

Sprint-1/1-key-exercises/3-paths.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ console.log(`The base part of ${filePath} is ${base}`);
2020
const dir = filePath.slice(0, lastSlashIndex + 1);
2121
const ext = base.slice(base.lastIndexOf("."));
2222

23-
// https://www.google.com/search?q=slice+mdn
23+
// https://www.google.com/search?q=slice+mdn

0 commit comments

Comments
 (0)