lemon/concepts/bpgraph.h
changeset 1196 4441b066368c
parent 1195 8b2b9e61d8ce
child 1217 7bf489cf624e
     1.1 --- a/lemon/concepts/bpgraph.h	Wed Jan 11 22:43:50 2012 +0100
     1.2 +++ b/lemon/concepts/bpgraph.h	Wed Jan 11 22:58:05 2012 +0100
     1.3 @@ -774,28 +774,28 @@
     1.4  
     1.5        /// \brief Converts the node to red node object.
     1.6        ///
     1.7 -      /// This class is converts unsafely the node to red node
     1.8 +      /// This function converts unsafely the node to red node
     1.9        /// object. It should be called only if the node is from the red
    1.10        /// partition or INVALID.
    1.11        RedNode asRedNodeUnsafe(const Node&) const { return RedNode(); }
    1.12  
    1.13        /// \brief Converts the node to blue node object.
    1.14        ///
    1.15 -      /// This class is converts unsafely the node to blue node
    1.16 +      /// This function converts unsafely the node to blue node
    1.17        /// object. It should be called only if the node is from the red
    1.18        /// partition or INVALID.
    1.19        BlueNode asBlueNodeUnsafe(const Node&) const { return BlueNode(); }
    1.20  
    1.21        /// \brief Converts the node to red node object.
    1.22        ///
    1.23 -      /// This class is converts safely the node to red node
    1.24 +      /// This function converts safely the node to red node
    1.25        /// object. If the node is not from the red partition, then it
    1.26        /// returns INVALID.
    1.27        RedNode asRedNode(const Node&) const { return RedNode(); }
    1.28  
    1.29        /// \brief Converts the node to blue node object.
    1.30        ///
    1.31 -      /// This class is converts unsafely the node to blue node
    1.32 +      /// This function converts unsafely the node to blue node
    1.33        /// object. If the node is not from the blue partition, then it
    1.34        /// returns INVALID.
    1.35        BlueNode asBlueNode(const Node&) const { return BlueNode(); }