diff --git a/FastRng/Double/MultiThreadedRng.cs b/FastRng/Double/MultiThreadedRng.cs
index d0b48b8..072bb1c 100644
--- a/FastRng/Double/MultiThreadedRng.cs
+++ b/FastRng/Double/MultiThreadedRng.cs
@@ -10,7 +10,7 @@ namespace FastRng.Double
///
/// This class uses the George Marsaglia's MWC algorithm. The algorithm's implementation based loosely on John D.
/// Cook's (johndcook.com) implementation (https://www.codeproject.com/Articles/25172/Simple-Random-Number-Generation).
- /// Thanks John for your work.
+ /// Thanks John for the inspiration.
///
public sealed class MultiThreadedRng : IRandom
{
diff --git a/FastRng/Float/MultiThreadedRng.cs b/FastRng/Float/MultiThreadedRng.cs
index 8b1d178..4112cb4 100644
--- a/FastRng/Float/MultiThreadedRng.cs
+++ b/FastRng/Float/MultiThreadedRng.cs
@@ -10,7 +10,7 @@ namespace FastRng.Float
///
/// This class uses the George Marsaglia's MWC algorithm. The algorithm's implementation based loosely on John D.
/// Cook's (johndcook.com) implementation (https://www.codeproject.com/Articles/25172/Simple-Random-Number-Generation).
- /// Thanks John for your work.
+ /// Thanks John for the inspiration.
///
public sealed class MultiThreadedRng : IRandom
{