Skip to content

Commit d338f03

Browse files
authored
Fix tag errors in sessions document page (#1307)
The tags in sessions document page are incomplete.
1 parent 7cc0c31 commit d338f03

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

docs/sessions.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ result2 = await Runner.run(
168168

169169
You can implement your own session memory by creating a class that follows the [`Session`][agents.memory.session.Session] protocol:
170170

171-
````python
171+
```python
172172
from agents.memory import Session
173173
from typing import List
174174

@@ -206,6 +206,7 @@ result = await Runner.run(
206206
"Hello",
207207
session=MyCustomSession("my_session")
208208
)
209+
```
209210

210211
## Session management
211212

@@ -245,7 +246,7 @@ result2 = await Runner.run(
245246
"What are my charges?",
246247
session=session
247248
)
248-
````
249+
```
249250

250251
## Complete example
251252

0 commit comments

Comments
 (0)