diff --git a/tutorials/cont/cnt001_basictseq.C b/tutorials/cont/cnt001_basictseq.C index d7319debfc8a0c03664770b9e81c02fca84a9b51..43cdd04e63e297d88fcc82d45897c38fa0a156a5 100644 --- a/tutorials/cont/cnt001_basictseq.C +++ b/tutorials/cont/cnt001_basictseq.C @@ -17,7 +17,7 @@ void cnt001_basictseq() cout << "Element " << i << endl; } // - cout << "Loop on sequence of integers from 3 to 29 in steps of 6" << endl; + cout << "Loop on sequence of integers from -5 to 29 in steps of 6" << endl; for (auto i : TSeqI(-5, 29, 6)) { cout << "Element " << i << endl; }