Author: Diane Trout <diane@ghic.org>
Description: lintian spotted a few typos
Forwarded: https://github.com/has2k1/scikit-misc/issues/14


--- a/skmisc/loess/src/_loess.pyx
+++ b/skmisc/loess/src/_loess.pyx
@@ -88,14 +88,14 @@
         elif x.ndim == 2:
             p = x.shape[1]
         else:
-            raise ValueError("The array of indepedent varibales "
+            raise ValueError("The array of independent variables "
                              "should be 2D at most!")
 
         if y.ndim != 1:
             raise ValueError("The array of dependent variables "
                              "should be 1D.")
         elif n != len(y):
-            raise ValueError("The independent and depedent varibales "
+            raise ValueError("The independent and dependent variables "
                              "should have the same number of "
                              "observations.")
 
