diff --git a/Source/Scheduling/ThreadCallbackOperation.cs b/Source/Scheduling/ThreadCallbackOperation.cs
index 400b899..e6fdaa2 100644
--- a/Source/Scheduling/ThreadCallbackOperation.cs
+++ b/Source/Scheduling/ThreadCallbackOperation.cs
@@ -28,7 +28,8 @@ namespace Nuclex.Support.Scheduling {
public class ThreadCallbackOperation : ThreadOperation {
///
- /// Initializes a new threaded method operation for a parameterless method
+ /// Initializes a new threaded method operation that will call back a
+ /// parameterless method from the background thread.
///
/// Method to be invoked in a background thread
///
@@ -38,7 +39,9 @@ namespace Nuclex.Support.Scheduling {
: this(method, true) { }
///
- /// Initializes a new threaded method operation for a parameterless method
+ /// Initializes a new threaded method operation that will call back a
+ /// parameterless method from the background thread and use the
+ /// thread pool optionally.
///
/// Method to be invoked in a background thread
/// Whether to use a ThreadPool thread
diff --git a/Source/Scheduling/ThreadOperation.cs b/Source/Scheduling/ThreadOperation.cs
index 5ec6f12..ef1b15c 100644
--- a/Source/Scheduling/ThreadOperation.cs
+++ b/Source/Scheduling/ThreadOperation.cs
@@ -28,17 +28,17 @@ namespace Nuclex.Support.Scheduling {
public abstract class ThreadOperation : Operation {
///
- /// Initializes a new threaded operation
+ /// Initializes a new threaded operation.
///
///
- /// Uses a ThreadPool thread to execute the method in
+ /// Uses a ThreadPool thread to execute the method in a background thread.
///
public ThreadOperation() : this(true) { }
///
- /// Initializes a new threaded operation
+ /// Initializes a new threaded operation which optionally uses the ThreadPool.
///
- /// Whether tos use a ThreadPool thread
+ /// Whether to use a ThreadPool thread.
///
/// If useThreadPool is false, a new thread will be created. This guarantees
/// that the method will be executed immediately but has an impact on