Author: dr
Date: Thu Jul 26 13:50:41 2007
New Revision: 5736

Log:
- More speling fixes

Modified:
    experimental/Tree/design/design.txt

Modified: experimental/Tree/design/design.txt
==============================================================================
--- experimental/Tree/design/design.txt [iso-8859-1] (original)
+++ experimental/Tree/design/design.txt [iso-8859-1] Thu Jul 26 13:50:41 2007
@@ -10,7 +10,7 @@
 ==================
 
 The design of the component allows to be flexible in where the tree structure
-information is stored (called Backends) and where the data that is associated
+information is stored (called backends) and where the data that is associated
 with the tree structure is stored (called DataStore). The backends provide
 methods to operate on the tree and fetch nodes. All different data stores
 can theoretically be used through any backend. All database related backends
@@ -101,13 +101,13 @@
 public function fetchSubtree( $id );
        Alias for fetchSubtreeDepthFirst().
 public function fetchSubtreeBreadthFirst( $id );
-       Returns the node with ID $id and all its children, sorted accoring to 
the
+       Returns the node with ID $id and all its children, sorted according to 
the
        `Breadth-first sorting`_ algorithm.
 public function fetchSubtreeDepthFirst( $id );
-       Returns the node with ID $id and all its children, sorted accoring to 
the
+       Returns the node with ID $id and all its children, sorted according to 
the
        `Depth-first sorting`_ algorithm.
 public function fetchSubtreeTopological( $id );
-       Returns the node with ID $id and all its children, sorted accoring to 
the
+       Returns the node with ID $id and all its children, sorted according to 
the
        `Topological sorting`_ algorithm.
 
 
@@ -198,7 +198,7 @@
 ```````````````````````
 
 Is an implementation of a Serialized/`Materialized path`_ algorithm for 
-storing tree structures in a database. The table schame looks like::
+storing tree structures in a database. The table schema looks like::
 
     CREATE TABLE 'serialized_path' (
         'id' integer NOT NULL,


-- 
svn-components mailing list
[EMAIL PROTECTED]
http://lists.ez.no/mailman/listinfo/svn-components

Reply via email to