X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=nucleus%2Flibrary%2Fnodes%2Fpath.h;fp=nucleus%2Flibrary%2Fnodes%2Fpath.h;h=0c3334151c832c87e35b5871b5b6a0efb3ecc1ac;hb=7b39f7e279005c8466ef508220a532ce2aa4abf8;hp=af6261f4c0bc9024736c5b93117f582a48c741e5;hpb=3fbd372b35b15a19fb171d5ae34294ff7b1e6485;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.