This is an automated email from the ASF dual-hosted git repository.
wanglijie pushed a commit to branch release-1.17
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/release-1.17 by this push:
new 2d4df6f6406 [FLINK-29542][docs] Fix typos in unload.md
2d4df6f6406 is described below
commit 2d4df6f6406103a6b74cb6b3996bedaac29b8710
Author: jiaoqingbo <[email protected]>
AuthorDate: Fri May 19 14:17:22 2023 +0800
[FLINK-29542][docs] Fix typos in unload.md
This closes #20986
---
docs/content/docs/dev/table/sql/unload.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/docs/content/docs/dev/table/sql/unload.md
b/docs/content/docs/dev/table/sql/unload.md
index ce5c2b89e86..8e013b7e8a6 100644
--- a/docs/content/docs/dev/table/sql/unload.md
+++ b/docs/content/docs/dev/table/sql/unload.md
@@ -33,20 +33,20 @@ UNLOAD statements are used to unload a built-in or
user-defined module.
{{< tabs "unload statement" >}}
{{< tab "Java" >}}
-UNLOAD statements can be executed with the `executeSql()` method of the
`TableEnvironment`. The `executeSql()` method returns 'OK' for a successful
LOAD operation; otherwise it will throw an exception.
+UNLOAD statements can be executed with the `executeSql()` method of the
`TableEnvironment`. The `executeSql()` method returns 'OK' for a successful
UNLOAD operation; otherwise it will throw an exception.
The following examples show how to run a UNLOAD statement in
`TableEnvironment`.
{{< /tab >}}
{{< tab "Scala" >}}
-UNLOAD statements can be executed with the `executeSql()` method of the
`TableEnvironment`. The `executeSql()` method returns 'OK' for a successful
LOAD operation; otherwise it will throw an exception.
+UNLOAD statements can be executed with the `executeSql()` method of the
`TableEnvironment`. The `executeSql()` method returns 'OK' for a successful
UNLOAD operation; otherwise it will throw an exception.
The following examples show how to run a UNLOAD statement in
`TableEnvironment`.
{{< /tab >}}
{{< tab "Python" >}}
-UNLOAD statements can be executed with the `execute_sql()` method of the
`TableEnvironment`. The `execute_sql()` method returns 'OK' for a successful
LOAD operation; otherwise it will throw an exception.
+UNLOAD statements can be executed with the `execute_sql()` method of the
`TableEnvironment`. The `execute_sql()` method returns 'OK' for a successful
UNLOAD operation; otherwise it will throw an exception.
The following examples show how to run a UNLOAD statement in
`TableEnvironment`.