diff --git a/src/Numerics/Sorting.cs b/src/Numerics/Sorting.cs
index be9acaf2..28af86e9 100644
--- a/src/Numerics/Sorting.cs
+++ b/src/Numerics/Sorting.cs
@@ -4,7 +4,7 @@
// http://github.com/mathnet/mathnet-numerics
// http://mathnetnumerics.codeplex.com
//
-// Copyright (c) 2009-2013 Math.NET
+// Copyright (c) 2009-2015 Math.NET
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
@@ -464,7 +464,7 @@ namespace MathNet.Numerics
/// The type of elements in the primary list.
/// The type of elements in the secondary list.
/// List to sort.
- /// List to to sort on duplicate primaty items, and permute the same way as the key list.
+ /// List to sort on duplicate primary items, and permute the same way as the key list.
/// Comparison, defining the primary sort order.
/// Comparison, defining the secondary sort order.
public static void SortAll(IList primary, IList secondary, IComparer primaryComparer = null, IComparer secondaryComparer = null)
@@ -545,8 +545,8 @@ namespace MathNet.Numerics
b--;
} while (a <= b);
- // In order to limit the recusion depth to log(n), we sort the
- // shorter partition recusively and the longer partition iteratively.
+ // In order to limit the recursion depth to log(n), we sort the
+ // shorter partition recursively and the longer partition iteratively.
if ((b - left) <= (right - a))
{
if (left < b)
@@ -635,8 +635,8 @@ namespace MathNet.Numerics
b--;
} while (a <= b);
- // In order to limit the recusion depth to log(n), we sort the
- // shorter partition recusively and the longer partition iteratively.
+ // In order to limit the recursion depth to log(n), we sort the
+ // shorter partition recursively and the longer partition iteratively.
if ((b - left) <= (right - a))
{
if (left < b)
@@ -734,8 +734,8 @@ namespace MathNet.Numerics
b--;
} while (a <= b);
- // In order to limit the recusion depth to log(n), we sort the
- // shorter partition recusively and the longer partition iteratively.
+ // In order to limit the recursion depth to log(n), we sort the
+ // shorter partition recursively and the longer partition iteratively.
if ((b - left) <= (right - a))
{
if (left < b)
@@ -834,8 +834,8 @@ namespace MathNet.Numerics
b--;
} while (a <= b);
- // In order to limit the recusion depth to log(n), we sort the
- // shorter partition recusively and the longer partition iteratively.
+ // In order to limit the recursion depth to log(n), we sort the
+ // shorter partition recursively and the longer partition iteratively.
if ((b - left) <= (right - a))
{
if (left < b)