Skip to content

Commit

Permalink
Fixing documentation (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bidek56 authored Mar 7, 2024
1 parent ea4ddc5 commit 3e1bd99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion polars/dataframe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ export interface DataFrame
* // Filter on multiple conditions
* > df.filter(
* ... pl.col("foo").lt(3)
* ... .and(pl.col("ham").eq("a"))
* ... .and(pl.col("ham").eq(pl.lit("a")))
* ... )
* shape: (1, 3)
* ┌─────┬─────┬─────┐
Expand Down

0 comments on commit 3e1bd99

Please sign in to comment.