diff --git a/docs/_tutorials/reference.md b/docs/_tutorials/reference.md index 1450e3a61..c3cc2b392 100644 --- a/docs/_tutorials/reference.md +++ b/docs/_tutorials/reference.md @@ -115,7 +115,7 @@ App options are passed into the `App` constructor. | `extendedErrorHandler` | Option that accepts a `boolean` value. When set to `true`, the global error handler is passed an object with additional request context. Available from version 3.8.0, defaults to `false`. More information on advanced error handling can be found [in the documentation](/bolt-js/concepts#error-handling). | | `ignoreSelf` | `boolean` to enable a middleware function that ignores any messages coming from your app. Requires a `botId`. Defaults to `true`. | | `clientOptions.slackApiUrl` | Allows setting a custom endpoint for the Slack API. Used most often for testing. | -| `socketMode` | Option that accepts a `boolean` value. When set to `true` the app is started in socket mode, i.e. it allows your app to connect and receive data from Slack via a WebSocket connection. Defaults to `false`. See [socket mode documentation](/bolt-js/concepts#socket-mode) for further information. +| `socketMode` | Option that accepts a `boolean` value. When set to `true` the app is started in [Socket Mode](/bolt-js/concepts#socket-mode), i.e. it allows your app to connect and receive data from Slack via a WebSocket connection. Defaults to `false`. | `developerMode` | `boolean` to activate the developer mode. When set to `true` the `logLevel` is automatically set to `DEBUG` and `socketMode` is set to `true`. However, explicitly setting these two properties takes precedence over implicitly setting them via `developerMode`. Furthermore, a custom OAuth failure handler is provided to help debugging. Finally, the body of all incoming requests are logged and thus sensitive information like tokens might be contained in the logs. Defaults to `false`. | > Bolt's client is an instance of `WebClient` from the [Node Slack SDK](/node-slack-sdk), so some of that documentation may be helpful as you're developing.