diff libinterp/corefcn/cellfun.cc @ 21751:b571fc85953f

maint: Use two spaces after period to indicate sentence break.
author Rik <rik@octave.org>
date Thu, 19 May 2016 18:48:52 -0700
parents f4d7d0eb5b0c
children 112b20240c87
line wrap: on
line diff
--- a/libinterp/corefcn/cellfun.cc	Thu May 19 19:42:57 2016 -0400
+++ b/libinterp/corefcn/cellfun.cc	Thu May 19 18:48:52 2016 -0700
@@ -1907,7 +1907,7 @@
 
   if (ivec >= 0)
     {
-      // Vector split. Use 1D indexing.
+      // Vector split.  Use 1D indexing.
       octave_idx_type l = 0;
       octave_idx_type nidx = (ivec == 0 ? nridx : ncidx);
       for (octave_idx_type i = 0; i < nidx; i++)
@@ -1919,7 +1919,7 @@
     }
   else
     {
-      // General 2D case. Use 2D indexing.
+      // General 2D case.  Use 2D indexing.
       OCTAVE_LOCAL_BUFFER (idx_vector, ridx, nridx);
       prepare_idx (ridx, 0, nd, d);
 
@@ -1938,7 +1938,7 @@
   return retval;
 }
 
-// Nd case. Works for Arrays and octave_map.
+// Nd case.  Works for Arrays and octave_map.
 // Uses Nd indexing.
 
 template <typename ArrayND>
@@ -2003,7 +2003,7 @@
     return do_mat2cell_nd (a, d, nd);
 }
 
-// General case. Works for any class supporting do_index_op.
+// General case.  Works for any class supporting do_index_op.
 // Uses Nd indexing.
 
 Cell