X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=nucleus%2Flibrary%2Fnodes%2Fpath.h;h=0c3334151c832c87e35b5871b5b6a0efb3ecc1ac;hb=33ae46638f71b8664ad599a6e895fcebc0c1bd69;hp=af6261f4c0bc9024736c5b93117f582a48c741e5;hpb=3ea085ec301ed1399dfa1e9f3a240312dc95410b;p=feisty_meow.git diff --git a/nucleus/library/nodes/path.h b/nucleus/library/nodes/path.h index af6261f4..0c333415 100644 --- a/nucleus/library/nodes/path.h +++ b/nucleus/library/nodes/path.h @@ -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.