Skip to content

Commit e35c3a1

Browse files
authored
Update javascript-asynchronous-programming-and-callbacks.md
Clarify wording. Signed-off-by: Thomas Amberg <tamberg@yaler.net>
1 parent e19099e commit e35c3a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/site/pages/en/learn/asynchronous-work/javascript-asynchronous-programming-and-callbacks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Programs internally use _interrupts_, a signal that's emitted to the processor t
1818

1919
Let's not go into the internals of this now, but just keep in mind that it's normal for programs to be asynchronous and halt their execution until they need attention, allowing the computer to execute other things in the meantime. When a program is waiting for a response from the network, it cannot halt the processor until the request finishes.
2020

21-
Normally, programming languages are synchronous and some provide a way to manage asynchronicity in the language or through libraries. C, Java, C#, PHP, Go, Ruby, Swift, and Python are all synchronous by default. Some of them handle async operations by using threads, spawning a new process.
21+
Normally, programming languages are synchronous and some provide a way to manage asynchronicity in the language or through libraries. C, Java, C#, PHP, Go, Ruby, Swift, and Python are all synchronous by default. Some of them handle async operations by using threads, or by spawning a new process.
2222

2323
## JavaScript
2424

0 commit comments

Comments
 (0)