diff --git a/src/Numerics/Constants.cs b/src/Numerics/Constants.cs
index 671a3446..f010cff8 100644
--- a/src/Numerics/Constants.cs
+++ b/src/Numerics/Constants.cs
@@ -31,8 +31,6 @@ namespace MathNet.Numerics
///
/// A collection of frequently used mathematical constants.
///
- ///
- ///
public static class Constants
{
#region Mathematical Constants
diff --git a/src/Numerics/Random/SystemRandomExtensions.cs b/src/Numerics/Random/SystemRandomExtensions.cs
index fb193079..1c809fca 100644
--- a/src/Numerics/Random/SystemRandomExtensions.cs
+++ b/src/Numerics/Random/SystemRandomExtensions.cs
@@ -32,6 +32,10 @@ namespace MathNet.Numerics.Random
using System.Collections.Generic;
using Properties;
+ ///
+ /// This class implements extension methods for the System.Random class. The extension methods generate
+ /// pseudo-random distributed numbers for types other than double and int32.
+ ///
public static class SystemRandomExtensions
{
///
@@ -41,7 +45,7 @@ namespace MathNet.Numerics.Random
/// A 64-bit signed integer greater than or equal to 0, and less than ; that is,
/// the range of return values includes 0 but not .
///
- ///
+ ///
public static long NextInt64(this System.Random rnd)
{
byte[] buffer = new byte[sizeof(Int64)];
@@ -63,7 +67,7 @@ namespace MathNet.Numerics.Random
/// A 32-bit signed integer of the full range, including 0, negative numbers,
/// and .
///
- ///
+ ///
public static int NextFullRangeInt32(this System.Random rnd)
{
byte[] buffer = new byte[sizeof(Int32)];
@@ -78,7 +82,7 @@ namespace MathNet.Numerics.Random
/// A 64-bit signed integer of the full range, including 0, negative numbers,
/// and .
///
- ///
+ ///
public static long NextFullRangeInt64(this System.Random rnd)
{
byte[] buffer = new byte[sizeof(Int64)];