diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 6726ab7e8..00451f27a 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -29,6 +29,7 @@ csabar Curt Mullin Cyril Martin Dan Aizenstros +Daniel Chalmers danpaul88 darrelbrown David Laundav diff --git a/Source/OxyPlot/Rendering/OxyColor.cs b/Source/OxyPlot/Rendering/OxyColor.cs index 13fe07122..477f7fe44 100644 --- a/Source/OxyPlot/Rendering/OxyColor.cs +++ b/Source/OxyPlot/Rendering/OxyColor.cs @@ -150,7 +150,7 @@ public static OxyColor Parse(string value) /// L2-norm in ARGB space public static double ColorDifference(OxyColor c1, OxyColor c2) { - // http://en.wikipedia.org/wiki/OxyColor_difference + // http://en.wikipedia.org/wiki/Color_difference // http://mathworld.wolfram.com/L2-Norm.html double dr = (c1.R - c2.R) / 255.0; double dg = (c1.G - c2.G) / 255.0; @@ -196,7 +196,7 @@ public static OxyColor FromHsv(double[] hsv) /// The saturation value [0,1] /// The intensity value [0,1] /// The . - /// See Wikipedia. + /// See Wikipedia. public static OxyColor FromHsv(double hue, double sat, double val) { double g, b; @@ -471,4 +471,4 @@ string ICodeGenerating.ToCode() return this.ToCode(); } } -} \ No newline at end of file +}