Skip to content

Commit bedbb60

Browse files
committed
Typos
1 parent 39d6c08 commit bedbb60

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

docs/src/getting-started/index.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,8 +233,7 @@ respectively, in the pipeline.
233233
```
234234

235235
1. Plot all the tables directly downstream from `schema.Rectangle`
236-
display: none
237-
}
236+
238237

239238
```python
240239
(dj.Diagram('my_schema')-1+1).draw() # (1)

docs/src/query-lang/operators.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ cond_tuple = ('user = "Alice"', 'session_date = "2022-01-01"') # (2)
5252
import pandas as pd
5353
cond_frame = pd.DataFrame(data={'user': ['Alice'], 'session_date': ['2022-01-01']}) # (3)
5454

55-
Student() & ['user = "Alice"', 'session_date = "2022-01-01"']
55+
Session() & ['user = "Alice"', 'session_date = "2022-01-01"']
5656
```
5757

5858
1. A list
@@ -122,7 +122,7 @@ Session.proj('session','session_date',start='session_start_time',end='session_en
122122
Projection can also be used to to compute new attributes from existing ones.
123123

124124
```python
125-
Session.Proj(duration='session_end_time-session_start_time') & 'duration > 10'
125+
Session.proj(duration='session_end_time-session_start_time') & 'duration > 10'
126126
```
127127

128128
## Aggr

0 commit comments

Comments
 (0)