From 7f7851e8e9f65c1a5c059ae96b08bd77653cd80e Mon Sep 17 00:00:00 2001 From: "J. Degand" <70610011+jdegand@users.noreply.github.com> Date: Sat, 17 Aug 2024 20:49:47 -0400 Subject: [PATCH] docs(java): remove nb! in threads (#6599) --- .../content/101-java-advanced-topics/108-basics-of-threads.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/roadmaps/java/content/101-java-advanced-topics/108-basics-of-threads.md b/src/data/roadmaps/java/content/101-java-advanced-topics/108-basics-of-threads.md index 42897525a..b737487dc 100644 --- a/src/data/roadmaps/java/content/101-java-advanced-topics/108-basics-of-threads.md +++ b/src/data/roadmaps/java/content/101-java-advanced-topics/108-basics-of-threads.md @@ -2,7 +2,7 @@ A thread in Java is the direction or path that is taken while a program is being executed. Generally, all the programs have at least one thread, known as the main thread, that is provided by the JVM or Java Virtual Machine at the starting of the program’s execution. -NB! Writing correct multi-threaded application is complex and it's an advanced topic. Things like ParallelStreams, thread-safe Collections and ExecutorService can be helpful. +Writing correct multi-threaded application is complex and it's an advanced topic. Things like ParallelStreams, thread-safe Collections and ExecutorService can be helpful. Visit the following resources to learn more: