This is an automated email from the ASF dual-hosted git repository.
snuyanzin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/master by this push:
new a51b552d334 [hotfix][docs] Fix a typo in `procedures.md`
a51b552d334 is described below
commit a51b552d3343d45cfa5dd0d3dbda582c6fed8bfd
Author: Dong Wang <[email protected]>
AuthorDate: Tue Nov 25 03:31:30 2025 +0800
[hotfix][docs] Fix a typo in `procedures.md`
---
docs/content/docs/dev/table/procedures.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/content/docs/dev/table/procedures.md
b/docs/content/docs/dev/table/procedures.md
index 9515e89563f..4e0d46f524e 100644
--- a/docs/content/docs/dev/table/procedures.md
+++ b/docs/content/docs/dev/table/procedures.md
@@ -32,7 +32,7 @@ Flink Table API & SQL empowers users to perform data
manipulation and administra
## Implementation Guide
To call a procedure, it must be available in a catalog. To provide procedures
in a catalog, you need to implement the procedure and then return it using the
`Catalog.getProcedure(ObjectPath procedurePath)` method.
-The following steps will guild you on how to implement and provide a procedure
in a catalog.
+The following steps will guide you on how to implement and provide a procedure
in a catalog.
### Procedure Class