Skip to content

Commit f626936

Browse files
committed
Updating links to be correct
1 parent 9b05c3c commit f626936

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

README.org

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@
5252
3. ~cd tutorials~
5353
4. ~cd~ into a tutorial's directory
5454
- Each coding example should contain the directory within the comments
55-
- Ex: ~// File: injection-fundamentals-1/src/1/app.js~
56-
- So we would ~cd injection-fundamentals-1~
55+
- Ex: ~// File: ep9-injection-fundamentals-part-1/src/1/app.js~
56+
- So we would ~cd ep9-injection-fundamentals-part-1~
5757
5. Bootstrap the example
5858
- Run the shell command that you see in the slides
5959
- Ex: ~EX_NUM=1 docker-compose up~

ep10-injection-fundamentals-2/src/1/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ curl.stdout.on('data', function(data) {
1212
console.log(data);
1313
});
1414
// Run: "EX_NUM=1 docker-compose up"
15-
// File: "injection-fundamentals-2/src/1/app.js"
15+
// File: "ep10-injection-fundamentals-part-2/src/1/app.js"

ep10-injection-fundamentals-2/src/2/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ curl.stdout.on('data', function(data) {
1010
console.log(data);
1111
});
1212
// Run: "EX_NUM=2 docker-compose up"
13-
// File: "injection-fundamentals-2/src/2/app.js"
13+
// File: "ep10-injection-fundamentals-part-2/src/2/app.js"

ep11-injection-fundamentals-3/src/1/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ console.timeEnd('Email Regex Took');
1515
// If isValid is false, halt execution of input
1616

1717
// Run: "EX_NUM=1 docker-compose up"
18-
// File: "injection-fundamentals-3/src/1/app.js"
18+
// File: "ep11-injection-fundamentals-3/src/1/app.js"

ep9-injection-fundamentals-part-1/src/1/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ curl.stdout.on('data', function(data) {
99
console.log(data);
1010
});
1111
// Run: "EX_NUM=1 docker-compose up"
12-
// File: "injection-fundamentals-1/src/1/app.js"
12+
// File: "ep9-injection-fundamentals-part-1/src/1/app.js"
1313
// Env Setup/Error Reporting: https://sts.tools/readme
1414
// Questions: https://sts.tools/injection-question

ep9-injection-fundamentals-part-1/src/2/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ curl.stdout.on('data', function(data) {
1010
console.log(data);
1111
});
1212
// Run: "EX_NUM=2 docker-compose up"
13-
// File: "injection-fundamentals-1/src/2/app.js"
13+
// File: "ep9-injection-fundamentals-part-1/src/2/app.js"
1414
// Env Setup/Error Reporting: https://sts.tools/readme
1515
// Questions: https://sts.tools/injection-question

0 commit comments

Comments
 (0)