Handle Documentation
Suppose you need to add or update documentation for your code.
Identify Undocumented Code
> find functions without proper JSDoc comments in the auth moduleGenerate Documentation
> add JSDoc comments to the undocumented functions in auth.jsReview and Enhance
> improve the generated documentation with more context and examplesValidate Documentation
> check if the documentation follows our project standardsTips:
- Specify the documentation style you want (JSDoc, docstrings, etc.)
- Request examples in the documentation
- Ask for documentation on public APIs, interfaces, and complex logic