<!-- HUBBERS BEWARE! THE GITHUB/DOCS REPO IS PUBLIC TO THE ENTIRE INTERNET. OPEN AN ISSUE IN GITHUB/DOCS-CONTENT https://github.com/github/docs-content/issues/new/choose INSTEAD. --> <!-- For questions, ask in Discussions: https://github.com/github/docs/discussions Before you file an issue read the: - Code of Conduct: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - Contributing guide: https://github.com/github/docs/blob/main/CONTRIBUTING.md Check to make sure someone hasn't already opened a similar issue: https://github.com/github/docs/issues --> ### What article on docs.github.com is affected? [Command-line utilities](https://docs.github.com/en/enterprise-server@2.22/admin/configuration/command-line-utilities#ghe-config) ### What part(s) of the article would you like to see updated? The following example: ``` $ ghe-config app.github.rate_limiting_exempt_users "hubot github-actions" # Exempts the users hubot and github-actions from rate limits ``` In this example, the correct key has hyphens, not underscores. Therefore it should read: ``` $ ghe-config app.github.rate-limiting-exempt-users "hubot github-actions" # Exempts the users hubot and github-actions from rate limits ``` ### Additional information I've opened PR #1279 for this.