Skip to content

Commit 047c815

Browse files
committed
1 parent 6ee3f5a commit 047c815

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

narwhals/_plan/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Brainstorming an `Expr` internal represention.
1+
"""Brainstorming an `Expr` internal representation.
22
33
Notes:
44
- Each `Expr` method should be representable by a single node

narwhals/_plan/expr.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ def __repr__(self) -> str:
226226

227227

228228
class WindowExpr(ExprIR):
229-
"""A fully specified `.over()`, that occured after another expression.
229+
"""A fully specified `.over()`, that occurred after another expression.
230230
231231
I think we want variants for partitioned, ordered, both.
232232
@@ -310,7 +310,7 @@ def __repr__(self) -> str:
310310
class IndexColumns(ExprIR):
311311
"""Renamed from `IndexColumn`.
312312
313-
`Nth` provides the singlular variant.
313+
`Nth` provides the singular variant.
314314
315315
https://github.com/pola-rs/polars/blob/112cab39380d8bdb82c6b76b31aca9b58c98fd93/crates/polars-plan/src/dsl/expr.rs#L80
316316
"""

narwhals/_plan/options.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ class RollingOptionsFixedWindow(Immutable):
180180

181181
window_size: int
182182
min_samples: int
183-
"""Renamed from `min_periods`, re-uses `window_size` if null."""
183+
"""Renamed from `min_periods`, reuses `window_size` if null."""
184184

185185
center: bool
186186
fn_params: RollingVarParams | None

0 commit comments

Comments
 (0)