Skip to content

Commit

Permalink
TYPO: less then -> less than
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbrc committed Jun 22, 2015
1 parent 3b8ebab commit 3fcf53b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scipy/stats/_multivariate.py
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,7 @@ def _dirichlet_check_input(alpha, x):
x = np.asarray(x)

if x.shape[0] + 1 != alpha.shape[0] and x.shape[0] != alpha.shape[0]:
raise ValueError("Vector 'x' must have one entry less then the" +
raise ValueError("Vector 'x' must have one entry less than the" +
" parameter vector 'a', but alpha.shape = " +
"%s and " % alpha.shape +
"x.shape = %s." % x.shape)
Expand Down

0 comments on commit 3fcf53b

Please sign in to comment.