Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Charles Smith <[email protected]>
  • Loading branch information
edgar2020 and techdocsmith authored Jul 25, 2024
1 parent ca475a1 commit 5743f94
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/querying/sql-functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,14 +77,14 @@ Calculates the arc cosine of a numeric expression.

<details><summary>Example</summary>

The following example calculates the arc cosine of zero.
The following example calculates the arc cosine (arccosine) of zero.

```sql
SELECT ACOS(0) AS "arc_cosine"
```
Returns the following:

| `arc_tangent` |
| `arc_cosine` |
| -- |
| `1.5707963267948966` |
</details>
Expand Down Expand Up @@ -295,7 +295,7 @@ Joins all elements of `arr` by the delimiter specified by `str`.

## ASIN

Calculates the arc sine of a numeric expression.
Calculates the arc sine (arcsine) of a numeric expression.

* **Syntax:** `ASIN(expr)`
* **Function type:** Scalar, numeric
Expand Down Expand Up @@ -325,7 +325,7 @@ Calculates the arc tangent of a numeric expression.

<details><summary>Example</summary>

The following example calculates the arc tangent of one.
The following example calculates the arc tangent (arctangent) of one.

```sql
SELECT ATAN(1) AS "arc_tangent"
Expand All @@ -341,7 +341,7 @@ Returns the following:

## ATAN2

Calculates the arc tangent of specified x and y coordinates.
Calculates the arc tangent (arctangent) of specified x and y coordinates.

* **Syntax:** `ATAN2(x, y)`
* **Function type:** Scalar, numeric
Expand All @@ -355,7 +355,7 @@ SELECT ATAN2(1,-1) AS "arc_tangent_2"
```
Returns the following:

| `arc_tangent` |
| `arc_tangent_2` |
| -- |
| `2.356194490192345` |
</details>
Expand Down

0 comments on commit 5743f94

Please sign in to comment.