Live data from Hacker News

Ask HN: What is example of good documentation in your opinion?

news.ycombinator.com

11–20 of 71 posts

Re: Ask HN: What is example of good documentation in your opinion?

#19
post #7

PHP: https://php.net/manual/function.str-contains

PHP does library documentation so much better than other languages. Compare: https://www.php.net/manual/en/function.ceil to https://docs.python.org/3/library/math.html#math.ceil for eg.

- Clear description, signature, types for parameters, return values.

- Examples, which will often cover edge cases.

- Separate page for each method

- A clear changelog section to document changes across versions.

Python on the other hand, gets a single sentence.

Post reply on HN