Skip to content

Commit 5a9fed2

Browse files
committed
docs: capitalize Instead in session.execute docstring
Signed-off-by: aoright <102943475+aoright@users.noreply.github.com>
1 parent a6469ef commit 5a9fed2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

sqlmodel/orm/session.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def exec(
9797
heroes = session.execute(select(Hero)).scalars().all()
9898
```
9999
100-
instead you could use `exec()`:
100+
Instead you could use `exec()`:
101101
102102
```Python
103103
heroes = session.exec(select(Hero)).all()
@@ -127,7 +127,7 @@ def execute(
127127
heroes = session.execute(select(Hero)).scalars().all()
128128
```
129129
130-
instead you could use `exec()`:
130+
Instead you could use `exec()`:
131131
132132
```Python
133133
heroes = session.exec(select(Hero)).all()

0 commit comments

Comments
 (0)