[docs] Fix various syntax and rendering errors (#127062)

* fix syntax and rendering errors

* clean up

* fix versions

* more clean up

* more fixes

* more fixes

* more fixes
This commit is contained in:
Colleen McGinnis 2025-04-24 10:57:03 -05:00 committed by GitHub
parent 41eefb62d3
commit 08552f1c2e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
95 changed files with 1439 additions and 1195 deletions

View file

@ -164,9 +164,8 @@ SELECT FIRST(a) FROM t
will result in:
| |
| --- |
| **FIRST(a)** |
| --- |
| 1 |
and
@ -177,9 +176,8 @@ SELECT FIRST(a, b) FROM t
will result in:
| |
| --- |
| **FIRST(a, b)** |
| --- |
| 100 |
```sql
@ -285,9 +283,8 @@ SELECT LAST(a) FROM t
will result in:
| |
| --- |
| **LAST(a)** |
| --- |
| 200 |
and
@ -298,9 +295,8 @@ SELECT LAST(a, b) FROM t
will result in:
| |
| --- |
| **LAST(a, b)** |
| --- |
| 2 |
```sql