Skip to content

Commit

Permalink
docs: Fix typo in sql functions (cosinus -> cosine) (#20676)
Browse files Browse the repository at this point in the history
  • Loading branch information
jqnatividad authored Jan 12, 2025
1 parent f020634 commit dd9a180
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/polars-sql/src/functions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ pub(crate) enum PolarsSQLFunctions {
/// ```
TanD,
/// SQL 'acos' function
/// Compute inverse cosinus of the input expression (in radians).
/// Compute inverse cosine of the input expression (in radians).
/// ```sql
/// SELECT ACOS(column_1) FROM df;
/// ```
Expand All @@ -245,7 +245,7 @@ pub(crate) enum PolarsSQLFunctions {
/// ```
Atan2,
/// SQL 'acosd' function
/// Compute inverse cosinus of the input expression (in degrees).
/// Compute inverse cosine of the input expression (in degrees).
/// ```sql
/// SELECT ACOSD(column_1) FROM df;
/// ```
Expand Down

0 comments on commit dd9a180

Please sign in to comment.