Skip to content

Commit dbb7db0

Browse files
apply code suggestions
Co-authored-by: Guilherme Araújo <arauujogui@gmail.com> Signed-off-by: Aviv Keller <me@aviv.sh>
1 parent e35c3a1 commit dbb7db0

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, or by spawning a new process.
21+
Normally, programming languages are synchronous and some provide ways to manage asynchronicity either within the language itself 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)