Skip to content

Commit 3cd21a7

Browse files
committed
minor change
1 parent 887fcdd commit 3cd21a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ console.log(`The base part of ${filePath} is ${base}`);
1919
// Get everthing before base
2020
const dir = filePath.slice(0,lastSlashIndex);
2121

22-
//Get everything after the last dot in the base
22+
//Get everything after the last dot in the base:
2323
const lastDotIndex = base.lastIndexOf(".");
2424
const ext = base.slice(lastSlashIndex+1);
2525

0 commit comments

Comments
 (0)