Skip to content

Commit a289c73

Browse files
committed
Fix a minor error in document
1 parent 51edf84 commit a289c73

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/_advanced/context.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ All listeners have access to a `context` dictionary, which can be used to enrich
1212
</div>
1313

1414
```python
15-
# Listener middleware to fetch tasks from external system using userId
15+
# Listener middleware to fetch tasks from external system using user ID
1616
def fetch_tasks(context, event, next):
1717
user = event["user"]
1818
try:
@@ -68,4 +68,4 @@ def show_tasks(event, client, context):
6868
"blocks": context["blocks"]
6969
}
7070
)
71-
```
71+
```

0 commit comments

Comments
 (0)