diff --git a/docs/en/sql-reference/20-sql-functions/00-array-functions/arrays-zip.md b/docs/en/sql-reference/20-sql-functions/00-array-functions/arrays-zip.md
new file mode 100644
index 0000000000..28e5a6683f
--- /dev/null
+++ b/docs/en/sql-reference/20-sql-functions/00-array-functions/arrays-zip.md
@@ -0,0 +1,39 @@
+---
+title: ARRAYS_ZIP
+---
+import FunctionDescription from '@site/src/components/FunctionDescription';
+
+
+
+Merges multiple arrays into a single array tuple.
+
+## Syntax
+
+```sql
+ARRAYS_ZIP( [, ...] )
+```
+
+## Arguments
+
+| Arguments | Description |
+|------------|-------------------|
+| `` | The input ARRAYs. |
+
+:::note
+- The length of each array must be the same.
+:::
+
+## Return Type
+
+Array(Tuple).
+
+## Examples
+
+```sql
+SELECT ARRAYS_ZIP([1, 2, 3], ['a', 'b', 'c']);
+┌────────────────────────────────────────┐
+│ arrays_zip([1, 2, 3], ['a', 'b', 'c']) │
+├────────────────────────────────────────┤
+│ [(1,'a'),(2,'b'),(3,'c')] │
+└────────────────────────────────────────┘
+```
diff --git a/docs/en/sql-reference/20-sql-functions/09-geometry-functions/st-geometryfromtext.md b/docs/en/sql-reference/20-sql-functions/09-geometry-functions/st-geometryfromtext.md
new file mode 100644
index 0000000000..77469fb7bc
--- /dev/null
+++ b/docs/en/sql-reference/20-sql-functions/09-geometry-functions/st-geometryfromtext.md
@@ -0,0 +1,5 @@
+---
+title: ST_GEOMETRYFROMTEXT
+---
+
+Alias for [ST_GEOMETRYFROMWKT](st-geometryfromwkt.md).
diff --git a/docs/en/sql-reference/20-sql-functions/09-geometry-functions/st-geometryfromwkt.md b/docs/en/sql-reference/20-sql-functions/09-geometry-functions/st-geometryfromwkt.md
index a9c965cb8a..398690f0c9 100644
--- a/docs/en/sql-reference/20-sql-functions/09-geometry-functions/st-geometryfromwkt.md
+++ b/docs/en/sql-reference/20-sql-functions/09-geometry-functions/st-geometryfromwkt.md
@@ -19,7 +19,7 @@ ST_GEOMETRYFROMWKT(, [])
- [ST_GEOMETRYFROMEWKT](st-geometryfromewkt.md)
- [ST_GEOMFROMEWKT](st-geomfromewkt.md)
- [ST_GEOMFROMTEXT](st-geomfromtext.md)
-- [ST_GEOMTRYFROMTEXT](st-geomtryfromtext.md)
+- [ST_GEOMETRYFROMTEXT](st-geometryfromtext.md)
## Arguments
diff --git a/docs/en/sql-reference/20-sql-functions/09-geometry-functions/st-geomtryfromtext.md b/docs/en/sql-reference/20-sql-functions/09-geometry-functions/st-geomtryfromtext.md
deleted file mode 100644
index f2aff5819d..0000000000
--- a/docs/en/sql-reference/20-sql-functions/09-geometry-functions/st-geomtryfromtext.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-title: ST_GEOTRYMFROMTEXT
----
-
-Alias for [ST_GEOMTRYFROMWKT](st-geometryfromwkt.md).
diff --git a/docs/en/sql-reference/20-sql-functions/10-map-functions/map-delete.md b/docs/en/sql-reference/20-sql-functions/10-map-functions/map-delete.md
index f3e91c934f..cfa736f966 100644
--- a/docs/en/sql-reference/20-sql-functions/10-map-functions/map-delete.md
+++ b/docs/en/sql-reference/20-sql-functions/10-map-functions/map-delete.md
@@ -11,14 +11,16 @@ Returns an existing MAP with one or more keys removed.
```sql
MAP_DELETE(