I want to contribute to Cocos2D documentation, Who do I talk with?

I like the cocos2D reference docs.

I think they could be better by providing more examples, common usage, mistake usage, etc.

I’d like to add this.

who do I talk to?

Cocos2d documentation presented in 2 forms: wiki pages and HTML pages autogenerated using doxygen. You can start to improve any direction, either wiki or generated docs, with usual account.

If you want improve generated docs, you’ll need to setup documentation build process
# Clone develop branch from git repo: https://github.com/cocos2d/cocos2d-x
# install doxygen utility
# come to ./document in cloned sources and run doxygen doxygen.config

Doxygen will take all C*+ comments in source code and generate ./document/html subfolder with index.html page. Doxygen also can generate separate pages unbound from any source code: you just write header or source C*+ file that contains only one comment with some markup, see ./document/MainPage.h as example.

Sergey,

Thanks, this is exactly what I wanted.

Who should I contact when I have a working example of what changes I’d like to help make?

If your changes are in generated docs, you can make pull request on github. See [[Work_Flow|this wiki page]] for more information (also you can navigate using breadcrumbs on top of that page).