Merge branch 'master' of feistymeow.org:feisty_meow
[feisty_meow.git] / nucleus / library / nodes / path.h
index af6261f4c0bc9024736c5b93117f582a48c741e5..0c3334151c832c87e35b5871b5b6a0efb3ecc1ac 100644 (file)
@@ -57,7 +57,7 @@ public:
   node *current() const;
   node *follow() const;
     //!< Returns the node specified by this path.
-    /*!< if the path is not valid, NIL is returned. */
+    /*!< if the path is not valid, NULL_POINTER is returned. */
 
   node *pop();
     //!< returns the top node on the path stack.
@@ -81,7 +81,7 @@ public:
     "to_follow" is set to one of the possible paths. */
 
   node *operator [] (int index) const;
-    //!< returns the node stored at "index", or NIL if "index" is invalid.
+    //!< returns the node stored at "index", or NULL_POINTER if "index" is invalid.
 
 private:
   path_node_stack *_stack;  //!< implementation of our pathway.