This is an automated email from the ASF dual-hosted git repository.

huanlimeng pushed a commit to branch fix-typo
in repository https://gitbox.apache.org/repos/asf/pulsar-site.git

commit eea7c9d5ef516ff00aad7097abaa3e4652678734
Author: HuanliMeng <[email protected]>
AuthorDate: Mon Jun 12 14:32:54 2023 +0800

    [doc][improve]--fix typos in get the secret section
---
 docs/functions-develop-security.md                          | 2 +-
 versioned_docs/version-2.11.x/functions-develop-security.md | 2 +-
 versioned_docs/version-3.0.x/functions-develop-security.md  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/functions-develop-security.md 
b/docs/functions-develop-security.md
index d9ef7fb0103..52a2a1bd3c1 100644
--- a/docs/functions-develop-security.md
+++ b/docs/functions-develop-security.md
@@ -61,7 +61,7 @@ public class GetSecretValueFunction implements 
Function<String, Void> {
         String secretValue = context.getSecret(input);
 
         if (!secretValue.isEmpty()) {
-            LOG.info("The secret {} has value {}", intput, secretValue);
+            LOG.info("The secret {} has value {}", input, secretValue);
         } else {
             LOG.warn("No secret with key {}", input);
         }
diff --git a/versioned_docs/version-2.11.x/functions-develop-security.md 
b/versioned_docs/version-2.11.x/functions-develop-security.md
index d9ef7fb0103..52a2a1bd3c1 100644
--- a/versioned_docs/version-2.11.x/functions-develop-security.md
+++ b/versioned_docs/version-2.11.x/functions-develop-security.md
@@ -61,7 +61,7 @@ public class GetSecretValueFunction implements 
Function<String, Void> {
         String secretValue = context.getSecret(input);
 
         if (!secretValue.isEmpty()) {
-            LOG.info("The secret {} has value {}", intput, secretValue);
+            LOG.info("The secret {} has value {}", input, secretValue);
         } else {
             LOG.warn("No secret with key {}", input);
         }
diff --git a/versioned_docs/version-3.0.x/functions-develop-security.md 
b/versioned_docs/version-3.0.x/functions-develop-security.md
index d9ef7fb0103..52a2a1bd3c1 100644
--- a/versioned_docs/version-3.0.x/functions-develop-security.md
+++ b/versioned_docs/version-3.0.x/functions-develop-security.md
@@ -61,7 +61,7 @@ public class GetSecretValueFunction implements 
Function<String, Void> {
         String secretValue = context.getSecret(input);
 
         if (!secretValue.isEmpty()) {
-            LOG.info("The secret {} has value {}", intput, secretValue);
+            LOG.info("The secret {} has value {}", input, secretValue);
         } else {
             LOG.warn("No secret with key {}", input);
         }

Reply via email to