Skip to content

Commit 31a1df5

Browse files
committed
Unify exercism notice usage
1 parent 5a75494 commit 31a1df5

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

exercises/practice/parallel-letter-frequency/.docs/instructions.append.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@ such as `async functions` or `Promises`, will actually execute concurrently inst
88
This is often better, since modern JavaScript is optimized for such use,
99
and you will often see code that "emulates" (or "cheats") parallel execution by the use of `Promise.all()` and other concurrent execution methods.
1010

11-
```exercism/caution
11+
<!-- prettier-ignore -->
12+
~~~@exercism/caution
1213
To pass the tests for this exercise, your solution needs to execute _concurrently_ (or in parallel),
1314
meaning that synchronous solutions (e.g. a simple `for` loop) will not pass.
14-
```
15+
~~~
1516

1617
## Concurency vs. Parallelism
1718

@@ -37,11 +38,12 @@ As described by MDN:
3738
On the other hand, if your JavaScript is running in Node.js, which is Exercism's target runtime,
3839
this same concept is known as [Worker threads][node].
3940

40-
```exercism/caution
41+
<!-- prettier-ignore -->
42+
~~~@exercism/caution
4143
Be aware that the implementation of the worker API differs largely between browsers and other JavaScript environments.
4244
4345
Make sure to read the documentation for your specific runtime!
44-
```
46+
~~~
4547

4648
Here's a simple demo of the `Web Worker API` (taken from [here][medium-demo])
4749

0 commit comments

Comments
 (0)