Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 7bb0632

Browse files
Update README.md
1 parent c8ef323 commit 7bb0632

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

‎README.md‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ Following operators are supported -
163163
is translated to
164164

165165
```python
166-
query.filter(User.name < 18)
166+
query.filter(User.age < 18)
167167
```
168168

169169
- #### lte
@@ -174,7 +174,7 @@ Following operators are supported -
174174
is translated to
175175

176176
```python
177-
query.filter(User.name <= 18)
177+
query.filter(User.age <= 18)
178178
```
179179

180180
- #### gt
@@ -185,7 +185,7 @@ Following operators are supported -
185185
is translated to
186186

187187
```python
188-
query.filter(User.name > 18)
188+
query.filter(User.age > 18)
189189
```
190190

191191
- #### gte
@@ -196,7 +196,7 @@ Following operators are supported -
196196
is translated to
197197

198198
```python
199-
query.filter(User.name >= 18)
199+
query.filter(User.age >= 18)
200200
```
201201

202202
- #### in

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /