changeset 11823:8f28953882c2 release-3-0-x

chi2rnd.m: fix missing semicolon
author John W. Eaton <jwe@octave.org>
date Fri, 22 Aug 2008 14:42:12 -0400
parents 54fcba82201b
children 965bb17961f0
files scripts/ChangeLog scripts/statistics/distributions/chi2rnd.m
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog
+++ b/scripts/ChangeLog
@@ -1,3 +1,7 @@
+2008-08-22  John W. Eaton  <jwe@octave.org>
+
+	* statistics/distributions/chi2rnd.m: Fix missing semicolon.
+
 2008-08-21  John W. Eaton  <jwe@octave.org>
 
 	* plot/__go_draw_axes__.m: Fix test for have_data.
--- a/scripts/statistics/distributions/chi2rnd.m
+++ b/scripts/statistics/distributions/chi2rnd.m
@@ -68,7 +68,7 @@
      if (find (!(n > 0) | !(n < Inf)))
        rnd = NaN * ones (sz);
      else
-       rnd = 2 * randg(n/2, sz)
+       rnd = 2 * randg(n/2, sz);
      endif
   else
     [retval, n, dummy] = common_size (n, ones (sz));