-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: updated doc strings #101
base: main
Are you sure you want to change the base?
Conversation
* @details This integer represents the current position within | ||
* the `dir_stack`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is superfluous
* @brief Constructs a path from the current directory stack. | ||
* | ||
* @param is_dir If true, the path is a directory path. | ||
* @return const char* The constructed file or directory path. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@return
should not include the type information
* @brief Constructs a path from the current directory stack. | ||
* | ||
* @param is_dir If true, the path is a directory path. | ||
* @return const char* The constructed file or directory path. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please also add that the returned buffer will only be valid until the next invocation of buildPath
Issues addressed from #93