Skip to content
Snippets Groups Projects
Commit 2c826de4 authored by Benjamin Beurdouche's avatar Benjamin Beurdouche Committed by Axel Naumann
Browse files

Tutorial: fix typos in tutorials/cont/cnt001_basictseq.C

parent 6c7e4711
No related branches found
No related tags found
No related merge requests found
...@@ -17,7 +17,7 @@ void cnt001_basictseq() ...@@ -17,7 +17,7 @@ void cnt001_basictseq()
cout << "Element " << i << endl; 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)) { for (auto i : TSeqI(-5, 29, 6)) {
cout << "Element " << i << endl; cout << "Element " << i << endl;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment