[Checkins] SVN: z3c.table/trunk/src/z3c/table/ More typo fixes (I've got a spell checker).

Marius Gedminas marius at pov.lt
Fri Aug 6 13:11:17 EDT 2010


Log message for revision 115527:
  More typo fixes (I've got a spell checker).
  
  

Changed:
  U   z3c.table/trunk/src/z3c/table/README.txt
  U   z3c.table/trunk/src/z3c/table/batch.txt
  U   z3c.table/trunk/src/z3c/table/column.txt
  U   z3c.table/trunk/src/z3c/table/sequence.txt
  U   z3c.table/trunk/src/z3c/table/sort.txt

-=-
Modified: z3c.table/trunk/src/z3c/table/README.txt
===================================================================
--- z3c.table/trunk/src/z3c/table/README.txt	2010-08-06 16:36:33 UTC (rev 115526)
+++ z3c.table/trunk/src/z3c/table/README.txt	2010-08-06 17:11:17 UTC (rev 115527)
@@ -591,7 +591,7 @@
   ...     provides=interfaces.IColumnHeader)
 
 Now we can render the table and we shall see a link in the header. Note that it
-is set to switch to descending as the the table initially will display the first
+is set to switch to descending as the table initially will display the first
 column as ascending:
 
   >>> myTable.update()

Modified: z3c.table/trunk/src/z3c/table/batch.txt
===================================================================
--- z3c.table/trunk/src/z3c/table/batch.txt	2010-08-06 16:36:33 UTC (rev 115526)
+++ z3c.table/trunk/src/z3c/table/batch.txt	2010-08-06 17:11:17 UTC (rev 115527)
@@ -257,7 +257,7 @@
   4
 
 We can set such a batch as row values, then this batch data are used for
-rendering. But take care, if we update the table, our rows get overriden
+rendering. But take care, if we update the table, our rows get overridden
 and reset to the previous values. this means you can set any batch as rows
 data and only render them. This is possible since the update method sorted all
 items and all batch contain ready-to-use data. This concept could be important
@@ -332,8 +332,8 @@
     </tbody>
   </table>
 
-This means you can probably update all batches, cache them and use them alter.
-but this is not usefull for normal usage in a page without an enhanced concept
+This means you can probably update all batches, cache them and use them after.
+But this is not useful for normal usage in a page without an enhanced concept
 which is not a part of this implementation. This also means, there must be
 another way to set the batch index. Yes there is, there are two other ways how
 we can set the batch position. We can set a batch position by setting the
@@ -383,13 +383,13 @@
   ...                                     'table-sortOn': 'table-number-1'})
   >>> requestBatchingTable = SimpleTable(container, batchingRequest)
 
-We also need to give the table a location and a name like we normaly setup
+We also need to give the table a location and a name like we normally set up
 in traversing:
 
   >>> requestBatchingTable.__parent__ = container
   >>> requestBatchingTable.__name__ = u'requestBatchingTable.html'
 
-Note; our table needs to start batching at smaller amount of items than we
+Note: our table needs to start batching at smaller amount of items than we
 have by default otherwise we don't get a batch:
 
   >>> requestBatchingTable.startBatchingAt = 5

Modified: z3c.table/trunk/src/z3c/table/column.txt
===================================================================
--- z3c.table/trunk/src/z3c/table/column.txt	2010-08-06 16:36:33 UTC (rev 115526)
+++ z3c.table/trunk/src/z3c/table/column.txt	2010-08-06 17:11:17 UTC (rev 115527)
@@ -467,7 +467,7 @@
 
 The ``GetAttrColumn`` column is a mixin which is used in ``CreatedColumn`` and
 in ``ModifiedColumn``. Not all code get used if everything is fine. So let's
-test the column itself and force some usecase:
+test the column itself and force some use case:
 
 
   >>> class GetTitleColumn(column.GetAttrColumn):

Modified: z3c.table/trunk/src/z3c/table/sequence.txt
===================================================================
--- z3c.table/trunk/src/z3c/table/sequence.txt	2010-08-06 16:36:33 UTC (rev 115526)
+++ z3c.table/trunk/src/z3c/table/sequence.txt	2010-08-06 17:11:17 UTC (rev 115527)
@@ -53,7 +53,7 @@
   ...                                     'table-sortOn': 'table-number-1'})
   >>> sequenceTable = SequenceTable(dataSequence, sequenceRequest)
 
-We also need to give the table a location and a name like we normaly setup
+We also need to give the table a location and a name like we normally setup
 in traversing:
 
   >>> from z3c.table.testing import Container

Modified: z3c.table/trunk/src/z3c/table/sort.txt
===================================================================
--- z3c.table/trunk/src/z3c/table/sort.txt	2010-08-06 16:36:33 UTC (rev 115526)
+++ z3c.table/trunk/src/z3c/table/sort.txt	2010-08-06 17:11:17 UTC (rev 115527)
@@ -22,7 +22,7 @@
   ...         return 'number: %s' % item.number
 
 
-Now let's setup a table:
+Now let's set up a table:
 
   >>> from z3c.table.testing import TitleColumn
   >>> class SortingTable(table.Table):



More information about the checkins mailing list