Index: Ringtoets/Common/src/Ringtoets.Common.Data/Probabilistics/PercentileBasedDesignVariable.cs =================================================================== diff -u -r8b07dff41637bfd485f412ec534f2ddd7fe27c00 -r39195f5df99368004bfcd61ccee7e0f2575c9b8b --- Ringtoets/Common/src/Ringtoets.Common.Data/Probabilistics/PercentileBasedDesignVariable.cs (.../PercentileBasedDesignVariable.cs) (revision 8b07dff41637bfd485f412ec534f2ddd7fe27c00) +++ Ringtoets/Common/src/Ringtoets.Common.Data/Probabilistics/PercentileBasedDesignVariable.cs (.../PercentileBasedDesignVariable.cs) (revision 39195f5df99368004bfcd61ccee7e0f2575c9b8b) @@ -31,9 +31,9 @@ /// This class is a representation of a variable derived from a probabilistic distribution, /// based on a percentile. /// - /// The type of the underlying distribution from which a value is + /// The type of the underlying distribution from which a value is /// derived. - public abstract class PercentileBasedDesignVariable : DesignVariable where TDistributionType : IDistribution + public abstract class PercentileBasedDesignVariable : DesignVariable where TDistribution : IDistribution { private static readonly Range percentileValidityRange = new Range(0, 1); private double percentile; @@ -44,7 +44,7 @@ /// /// Thrown when is /// null. - protected PercentileBasedDesignVariable(TDistributionType distribution) : base(distribution) + protected PercentileBasedDesignVariable(TDistribution distribution) : base(distribution) { percentile = 0.5; }