]> gitweb.michael.orlitzky.com - octave.git/blobdiff - misc/odd.m
Replace ##-style comments with %-style comments in all non-test code.
[octave.git] / misc / odd.m
index b0bc6267be4db4e29615e2d6915353a018b4e4c6..c754a12a8a39e6b83c266e61831c6b1074402ee4 100644 (file)
@@ -1,15 +1,15 @@
 function odd = odd(integer_n)
-  ## Returns true if its argument is odd; false otherwise.
-  ##
-  ## INPUTS:
-  ##
-  ##   * ``integer_n`` - The integer whose parity you're determining.
-  ##
-  ##
-  ## OUTPUTS:
-  ##
-  ##   * ``odd`` - True if `integer_n` is odd, false otherwise.
-  ##
-  
+  % Returns true if its argument is odd; false otherwise.
+  %
+  % INPUTS:
+  %
+  %   * ``integer_n`` - The integer whose parity you're determining.
+  %
+  %
+  % OUTPUTS:
+  %
+  %   * ``odd`` - True if `integer_n` is odd, false otherwise.
+  %
+
   odd = !even(integer_n);
 end