Skip to content

Commit 8cb660c

Browse files
committed
Update code in docs to be more consistent
1 parent 68ac4fe commit 8cb660c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/_advanced/adapters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The full list adapters, as well as configuration and sample usage, can be found
1818
```python
1919
from slack_bolt import App
2020
app = App(
21-
signing_secret=os.environ.get("SIGNING_SECRET"),
21+
signing_secret=os.environ.get("SLACK_SIGNING_SECRET"),
2222
token=os.environ.get("SLACK_BOT_TOKEN")
2323
)
2424

docs/_advanced/ja_adapters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ order: 0
1818
```python
1919
from slack_bolt import App
2020
app = App(
21-
signing_secret=os.environ.get("SIGNING_SECRET"),
21+
signing_secret=os.environ.get("SLACK_SIGNING_SECRET"),
2222
token=os.environ.get("SLACK_BOT_TOKEN")
2323
)
2424

docs/_basic/authenticating_oauth.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ oauth_settings = OAuthSettings(
3535
)
3636

3737
app = App(
38-
signing_secret=os.environ["SIGNING_SECRET"],
38+
signing_secret=os.environ["SLACK_SIGNING_SECRET"],
3939
oauth_settings=oauth_settings
4040
)
4141
```

docs/_basic/ja_authenticating_oauth.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ oauth_settings = OAuthSettings(
3535
)
3636

3737
app = App(
38-
signing_secret=os.environ["SIGNING_SECRET"],
38+
signing_secret=os.environ["SLACK_SIGNING_SECRET"],
3939
oauth_settings=oauth_settings
4040
)
4141
```

0 commit comments

Comments
 (0)