Skip to content

Commit 5c74065

Browse files
committed
Fix documentation
1 parent 8b0dbd7 commit 5c74065

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/xtd.core/include/xtd/threading/jthread.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
/// @brief The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
88
namespace xtd {
9-
/// @brief The xtd::threading namespace provides classes and interfaces that enable multithreaded programming. In addition to classes for synchronizing thread activities and access to data ( xtd::threading::mutex, xtd::threading::monitor, xtd::threading::interlocked, xtd::threading::auto_reset_event, and so on), this namespace includes a xtd::threading::jthread_pool class that allows you to use a pool of system-supplied threads, and a xtd::threading::timer class that executes callback methods on thread pool threads.
9+
/// @brief The xtd::threading namespace provides classes and interfaces that enable multithreaded programming. In addition to classes for synchronizing thread activities and access to data ( xtd::threading::mutex, xtd::threading::monitor, xtd::threading::interlocked, xtd::threading::auto_reset_event, and so on), this namespace includes a xtd::threading::thread_pool class that allows you to use a pool of system-supplied threads, and a xtd::threading::timer class that executes callback methods on thread pool threads.
1010
namespace threading {
1111
/// @brief Creates and controls an automatically rejoins on destruction thread, sets its priority, and gets its status.
1212
/// ```cpp
@@ -26,7 +26,7 @@ namespace xtd {
2626
/// @par Examples
2727
/// The following example shows how to use xtd::threading::jthread.
2828
/// @include jthread.cpp
29-
/// @remarks When a process starts, the system automatically creates a single foreground thread to execute application code. Along with this main foreground thread, a process can create one or more threads to execute a portion of the program code associated with the process. These threads can execute either in the foreground or in the background. In addition, you can use the xtd::threading::jthread_pool class to execute code on worker threads that are managed by the framework xrd.
29+
/// @remarks When a process starts, the system automatically creates a single foreground thread to execute application code. Along with this main foreground thread, a process can create one or more threads to execute a portion of the program code associated with the process. These threads can execute either in the foreground or in the background. In addition, you can use the xtd::threading::thread_pool class to execute code on worker threads that are managed by the framework xrd.
3030
/// @remarks An xtd::threading::jthread object is identical to an xtd::threading::thread whose xtd::threading::thread::auto_join property is set to true.
3131
class core_export_ jthread final : public xtd::threading::thread {
3232
public:

0 commit comments

Comments
 (0)