diff --git a/scikits/learn/linear_model/least_angle.py b/scikits/learn/linear_model/least_angle.py
index ed4eb3929e433f1943b8fd5ff1c7b164a558067c..12b1ecabe746ee157776a02c27f06857f0acbac4 100644
--- a/scikits/learn/linear_model/least_angle.py
+++ b/scikits/learn/linear_model/least_angle.py
@@ -52,7 +52,7 @@ def lars_path(X, y, Xy=None, Gram=None, max_features=None,
         active: array, shape (?)
             Indices of active variables at the end of the path.
 
-        coefs: array, shape (p,k)
+        coefs: array, shape (p, k)
             Coefficients along the path
 
         Notes