From 620ba17c82276a417decee433de815ff35399c9f Mon Sep 17 00:00:00 2001 From: wangd Date: Sun, 23 Nov 2025 20:00:13 +0800 Subject: [PATCH] [hotfix] 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 9515e89563f30..4e0d46f524e21 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