This method shouldn't show up in the generated docs, even if I don't set `@access private`, it should be able to read that the method is private. code.ts: ```ts private examplePrivateMethod(): boolean { return true; } ``` It shows in the docs as a public method