Skip to content

Commit 5a75494

Browse files
committed
Unify JavaScript casing
1 parent cae2bff commit 5a75494

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Instructions append
22

3-
Javascript is single-threaded by nature, so it lacks many of the language features that other languages have in order to handle parallel code execution.
3+
JavaScript is single-threaded by nature, so it lacks many of the language features that other languages have in order to handle parallel code execution.
44
In fact, the only way to achieve "real" parallel code execution is through `Worker threads` (also reffered to as `Web Workers`).
55

66
Almost always, code that appears to execute in parallel,
77
such as `async functions` or `Promises`, will actually execute concurrently instead.
8-
This is often better, since modern Javascript is optimized for such use,
8+
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

1111
```exercism/caution
@@ -24,17 +24,17 @@ For the sake of completeness, here's a definition for synchronous execution:
2424

2525
- Synchronous execution is when a task has to wait for another running task to complete, before it can run.
2626

27-
## Parallelism in Javascript
27+
## Parallelism in JavaScript
2828

29-
Even though Javascript by default is single-threaded, there is a way to execute code in parallel fashion.
29+
Even though JavaScript by default is single-threaded, there is a way to execute code in parallel fashion.
3030

31-
If your running javascript in the browser (e.g. in a web app),
31+
If you are running JavaScript in the browser (e.g. in a web app),
3232
then the way to achieve parallelism is through the [Web Worker API][mdn-demo].
3333
As described by MDN:
3434

3535
> Web Workers makes it possible to run a script operation in a background thread separate from the main execution thread of an application.
3636
37-
On the other hand, if your javascript is running in Node.js, which is Exercism's target runtime,
37+
On the other hand, if your JavaScript is running in Node.js, which is Exercism's target runtime,
3838
this same concept is known as [Worker threads][node].
3939

4040
```exercism/caution

0 commit comments

Comments
 (0)