Skip to content

Commit

Permalink
docs(python): Fix punctuations
Browse files Browse the repository at this point in the history
  • Loading branch information
atigbadr committed Jul 22, 2024
1 parent c58a7a6 commit 0ee2cba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions py-polars/polars/dataframe/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -4490,8 +4490,8 @@ def filter(
│ 3 ┆ 8 ┆ c │
└─────┴─────┴─────┘
Notice how the row with `None` values is filtered out, in order to keep the
same behavior as pandas, Use:
Notice how the row with `None` values is filtered out. In order to keep the
same behavior as pandas, use:
>>> df.filter(
... (pl.col("foo") != pl.col("bar"))
Expand Down
4 changes: 2 additions & 2 deletions py-polars/polars/lazyframe/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -3092,8 +3092,8 @@ def filter(
│ 3 ┆ 8 ┆ c │
└─────┴─────┴─────┘
Notice how the row with `None` values is filtered out,
in order to keep the same behavior as pandas, Use:
Notice how the row with `None` values is filtered out.
In order to keep the same behavior as pandas, use:
>>> lf.filter(
... (pl.col("foo") != pl.col("bar"))
Expand Down

0 comments on commit 0ee2cba

Please sign in to comment.