Skip to content

Commit 4d0feea

Browse files
authored
Update exercism.io into exercism.org in Template Strings concept (#1730)
1 parent 17ab56e commit 4d0feea

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

concepts/template-strings/about.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ All types of expressions can be used with template strings.
2222
```javascript
2323
const track = 'JavaScript';
2424

25-
`This track on exercism.io is ${track.toUpperCase()}.`;
26-
// => This track on exercism.io is JAVASCRIPT.
25+
`This track on exercism.org is ${track.toUpperCase()}.`;
26+
// => This track on exercism.org is JAVASCRIPT.
2727
```
2828

2929
When you are needing to have strings formatted on multiple lines:

concepts/template-strings/introduction.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ All types of expressions can be used with template strings.
2222
```javascript
2323
const track = 'JavaScript';
2424

25-
`This track on exercism.io is ${track.toUpperCase()}.`;
26-
// => This track on exercism.io is JAVASCRIPT.
25+
`This track on exercism.org is ${track.toUpperCase()}.`;
26+
// => This track on exercism.org is JAVASCRIPT.
2727
```
2828

2929
When you are needing to have strings formatted on multiple lines:

exercises/concept/custom-signs/.docs/introduction.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ All types of expressions can be used with template strings.
2222
```javascript
2323
const track = 'JavaScript';
2424

25-
`This track on exercism.io is ${track.toUpperCase()}.`;
26-
// => This track on exercism.io is JAVASCRIPT.
25+
`This track on exercism.org is ${track.toUpperCase()}.`;
26+
// => This track on exercism.org is JAVASCRIPT.
2727
```
2828

2929
When you are needing to have strings formatted on multiple lines:

0 commit comments

Comments
 (0)