Index: /fact/tools/pyscripts/doc/getting_started.rst
===================================================================
--- /fact/tools/pyscripts/doc/getting_started.rst	(revision 14103)
+++ /fact/tools/pyscripts/doc/getting_started.rst	(revision 14104)
@@ -195,11 +195,10 @@
 or loop over the file::
 
-  counter = 0
   for row in file::
-    if counter > 10:
-      break
-    
     print row.Time, row. OnTime
-    counter += 1
+
+*row* is just be a copy of *file*, but inside the for loop, I think it is 
+convenient to access members of *raw* rather than members of *file*.
+I is just easier to understand for the reader, I think.
 
 7. Old way of creating the so files
